We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e9568d commit e761161Copy full SHA for e761161
2 files changed
.github/workflows/pull-request-label.yml
@@ -23,7 +23,6 @@ jobs:
23
24
test-robot-check:
25
needs: test-robot-label
26
- if: always() && needs.test-robot-label.result != 'failure'
27
name: Job
28
uses: ./.github/workflows/test-robot-check.yml
29
with:
.github/workflows/pull-request.yml
@@ -24,7 +24,10 @@ jobs:
build:
needs: test-robot-unlabel
- if: always() && needs.test-robot-unlabel.result != 'failure'
+ if: >
+ always() &&
+ needs.test-robot-unlabel.result != 'failure' &&
30
+ needs.test-robot-unlabel.result != 'cancelled'
31
32
uses: ./.github/workflows/build.yml
33
0 commit comments