We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d10e81 commit e2d82b6Copy full SHA for e2d82b6
.github/workflows/build-and-test-differential.yaml
@@ -2,9 +2,20 @@ name: build-and-test-differential
2
3
on:
4
pull_request:
5
+ types:
6
+ - opened
7
+ - synchronize
8
+ - labeled
9
10
jobs:
11
+ prevent-no-label-execution:
12
+ uses: autowarefoundation/autoware-github-actions/.github/workflows/prevent-no-label-execution.yaml@v1
13
+ with:
14
+ label: tag:run-build-and-test-differential
15
+
16
build-and-test-differential:
17
+ needs: prevent-no-label-execution
18
+ if: ${{ needs.prevent-no-label-execution.outputs.run == 'true' }}
19
runs-on: ubuntu-latest
20
container: ${{ matrix.container }}${{ matrix.container-suffix }}
21
strategy:
0 commit comments