We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 633f6b1 commit aacc62cCopy full SHA for aacc62c
sample/workflows/dockerfile.yml
@@ -0,0 +1,30 @@
1
+name: Dockerfile
2
+
3
+on:
4
+ merge_group:
5
+ types:
6
+ - checks_requested
7
+ pull_request:
8
9
+ - opened
10
+ - synchronize
11
+ - reopened
12
+ push:
13
+ branches:
14
+ - master
15
+ - prod
16
17
+jobs:
18
+ dockerfile:
19
+ name: Dockerfile
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v5
23
+ - name: Dockerfile lint
24
+ uses: hadolint/[email protected]
25
+ with:
26
+ dockerfile: "Dockerfile*"
27
+ recursive: true
28
+ format: tty
29
+ override-info: DL3008,DL3018
30
+ failure-threshold: warning
0 commit comments