We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5a946d commit 765f2edCopy full SHA for 765f2ed
1 file changed
.github/workflows/pr.yml
@@ -5,7 +5,7 @@ on:
5
types: [opened, synchronize, reopened, ready_for_review]
6
7
concurrency:
8
- group: pr-${{ github.event.pull_request.number }}
+ group: ${{ github.workflow }}-pr-${{ github.event.pull_request.number }}
9
cancel-in-progress: true
10
11
permissions:
@@ -51,7 +51,7 @@ jobs:
51
- contracts
52
- lint-internal
53
- lint-external
54
- if: ${{ always() }}
+ if: ${{ !cancelled() }}
55
outputs:
56
run_tests: ${{ steps.decide.outputs.run_tests }}
57
@@ -100,7 +100,7 @@ jobs:
100
101
test:
102
needs: [prechecks-gate]
103
- if: ${{ always() && needs['prechecks-gate'].outputs.run_tests == 'true' }}
+ if: ${{ !cancelled() && needs['prechecks-gate'].outputs.run_tests == 'true' }}
104
uses: ./.github/workflows/_test.yml
105
secrets:
106
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments