summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2022-10-19 19:26:13 +0200
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2022-10-19 19:26:13 +0200
commit8d2aa8bd9239050c069205fae598a4bc66078937 (patch)
tree962ef2688ff2dfc6bfbb060e6d1ae45a58a47267 /.github
parent2aede292da05127e4354cf092e49fdc972e03350 (diff)
downloadpython-setuptools-git-8d2aa8bd9239050c069205fae598a4bc66078937.tar.gz
Allow skipping `integration-test` unconditionally
It will be skipped according to the `if` clause declared on the job itself. There shouldn't be any other cases causing this. However, if this job ever starts depending on another one, workflow cancellations may mark it as skipped in other cases too.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml18
1 files changed, 1 insertions, 17 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 14e9636b..66f2622a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -84,23 +84,7 @@ jobs:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
- allowed-skips: >-
- ${{
- (
- (
- github.event_name == 'pull_request' ||
- (
- github.event_name == 'push' &&
- github.ref == format(
- 'refs/heads/{0}',
- github.event.repository.default_branch
- )
- )
- )
- )
- && 'integration-test'
- || ''
- }}
+ allowed-skips: integration-test
jobs: ${{ toJSON(needs) }}
test_cygwin: