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 cf66a28 commit fb5efd7Copy full SHA for fb5efd7
1 file changed
.github/workflows/validate-image-digests.yaml
@@ -0,0 +1,22 @@
1
+name: Validate Image Digests
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - '.github/workflows/validate-image-digests.yaml'
7
+ - 'hack/validate-image-digests.sh'
8
+ - 'Dockerfile'
9
+ - '**/*bundle.Dockerfile'
10
+ - '.rhdh/docker/Dockerfile'
11
12
+jobs:
13
+ validate-image-digests:
14
+ name: Validate Image Digests
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - name: Checkout code
19
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
20
21
+ - name: Run validation script
22
+ run: make validate-image-digests
0 commit comments