Skip to content

Commit f2e260e

Browse files
authored
add-dockerfile-checker-action-to-repo
1 parent 8905369 commit f2e260e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)