-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (45 loc) · 1.22 KB
/
hadolint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: hadolint
on:
schedule:
- cron: '0 2 * * *'
push:
branches:
- main
paths:
- '.github/workflows/_shared**'
- '.github/workflows/hadolint.yml'
- 'hadolint/**'
pull_request:
paths:
- '.github/workflows/_shared**'
- '.github/workflows/hadolint.yml'
- 'hadolint/**'
workflow_dispatch:
concurrency: # this is required while I don't work on improving the build time
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
if: github.event_name == 'pull_request'
uses: ./.github/workflows/_shared_build.yml
with:
owner: ${{ github.repository_owner }}
image: hadolint
version: pr-${{ github.event.pull_request.head.sha }}
melange_package: true
publish:
permissions:
actions: read
contents: read
id-token: write
packages: write
if: github.event_name != 'pull_request'
uses: ./.github/workflows/_shared_publish.yml
with:
owner: ${{ github.repository_owner }}
image: hadolint
version: 1.${{ github.run_number }}.${{ github.run_attempt }}
revision: ${{ github.sha }}
melange_package: true
secrets:
gcr_token: ${{ secrets.GITHUB_TOKEN }}