From bfd19fd34781c5a1e6185f99bdb070a4bfdf44cc Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Wed, 3 Feb 2021 16:13:37 +0100 Subject: [PATCH] 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. --- .github/workflows/cross.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cross.yml b/.github/workflows/cross.yml index 2d64ad7..f97a938 100644 --- a/.github/workflows/cross.yml +++ b/.github/workflows/cross.yml @@ -2,6 +2,8 @@ name: cross on: push: + branches: + - 'release/**' schedule: - cron: "14 17 * * 3" jobs: