We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8905369 commit f2e260eCopy full SHA for f2e260e
.github/workflows/dockerfile-labels-check-child.yml
@@ -0,0 +1,28 @@
1
+name: Dockerfile Labels Check
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - edited
8
+ - reopened
9
+ - synchronize
10
+ - labeled
11
+ - unlabeled
12
13
+# Cancel other in progress runs of this workflow
14
+concurrency:
15
+ group: ${{ github.workflow }}-${{ github.ref }}
16
+ cancel-in-progress: true
17
18
+# Access scopes for the GITHUB_TOKEN created as part of the workflow
19
+permissions:
20
+ contents: read
21
+ pull-requests: write
22
+ repository-projects: read
23
24
+jobs:
25
+ dockerfile-labels-check:
26
+ uses: starlingbank/.github/.github/workflows/dockerfile-labels-check.yml@master
27
+ secrets: inherit
28
0 commit comments