From 22468ec58da267139a739f6e5540a8e63d6e9fe8 Mon Sep 17 00:00:00 2001 From: stuartmorgan Date: Tue, 7 Sep 2021 07:46:19 -0700 Subject: [PATCH] Allow neutral conclusion in publishing check It's possible for jobs to conclude in a "neutral" state; see https://github.com/flutter/plugins/runs/3534917860 for instance. Currently this causes "release" to be red when it shouldn't be. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f1a4a360949..2393eadab4c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: running-workflow-name: 'release' repo-token: ${{ secrets.GITHUB_TOKEN }} wait-interval: 180 # seconds - allowed-conclusions: success + allowed-conclusions: success,neutral # verbose:true will produce too many logs that hang github actions web UI. verbose: false