diff options
| author | seth <[email protected]> | 2023-11-16 04:01:38 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-16 04:01:38 -0500 |
| commit | 339a19cecb8e2ac6a2c04df81d9902971143d7bd (patch) | |
| tree | f8acace6b3664c890750c9e85f9d3a6e4d692aee /.github/workflows | |
| parent | 2ca38486d208d4063a02b87f1877323af59fab73 (diff) | |
actions: increase minimum latest_check_runs_count
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docker.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index b7a57b4..f1c578e 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -17,7 +17,7 @@ jobs: # https://github.com/sellout/bash-strict-mode/commit/9bf1d65c2f786a9887facfcb81e06d8b8b5f4667 if: github.event.check_suite.app.name == 'Garnix CI' && github.event.check_suite.conclusion == 'success' - && github.event.check_suite.latest_check_runs_count > 1 + && github.event.check_suite.latest_check_runs_count >= 8 && github.event.check_suite.head_branch == 'main' steps: @@ -57,7 +57,7 @@ jobs: # ditto if: github.event.check_suite.app.name == 'Garnix CI' && github.event.check_suite.conclusion == 'success' - && github.event.check_suite.latest_check_runs_count > 1 + && github.event.check_suite.latest_check_runs_count >= 8 && github.event.check_suite.head_branch == 'main' steps: |
