fix(cross.yml): only run on the release branch (#213)

Part of https://github.com/ooni/probe/issues/1335.

Motivation: we want all workflows to be green only when we are
approaching a release. It's fine if some less core tests are
failing during the development process. We have daily builds anyway
so we know of new breakages the day after, which is OK.
This commit is contained in:
Simone Basso 2021-02-03 16:13:37 +01:00 committed by GitHub
parent 43f95e2c9a
commit bfd19fd347
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,8 @@
name: cross
on:
push:
branches:
- 'release/**'
schedule:
- cron: "14 17 * * 3"
jobs: