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:
parent
43f95e2c9a
commit
bfd19fd347
2
.github/workflows/cross.yml
vendored
2
.github/workflows/cross.yml
vendored
|
@ -2,6 +2,8 @@
|
|||
name: cross
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'release/**'
|
||||
schedule:
|
||||
- cron: "14 17 * * 3"
|
||||
jobs:
|
||||
|
|
Loading…
Reference in New Issue
Block a user