File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ # For all available rules see: https://github.com/hadolint/hadolint#rules
3+ ignored :
4+ - DL3008 # We do not want to pin versions in apt get install.
5+ - DL3018 # We do not want to pin versions in apk add
6+
7+ # For full details see https://github.com/hadolint/hadolint#configure
8+ #
9+ # The following keys are available:
10+ #
11+ # failure-threshold: string # name of threshold level (error | warning | info | style | ignore | none)
12+ # format: string # Output format (tty | json | checkstyle | codeclimate | gitlab_codeclimate | gnu | codacy)
13+ # label-schema: # See https://github.com/hadolint/hadolint#linting-labels for details
14+ # author: string # Your name
15+ # contact: string # email address
16+ # created: timestamp # rfc3339 datetime
17+ # version: string # semver
18+ # documentation: string # url
19+ # git-revision: string # hash
20+ # license: string # spdx
21+ # no-color: boolean # true | false
22+ # no-fail: boolean # true | false
23+ # override:
24+ # error: [string] # list of rules
25+ # warning: [string] # list of rules
26+ # info: [string] # list of rules
27+ # style: [string] # list of rules
28+ # strict-labels: boolean # true | false
29+ # disable-ignore-pragma: boolean # true | false
30+ # trustedRegistries: string | [string] # registry or list of registries
Original file line number Diff line number Diff line change 77 pull_request :
88 branches : [ main ]
99 paths :
10+ - ' .config/hadolint.yml'
11+ - ' .dockerignore'
1012 - ' Dockerfile'
13+ # Docker project specific, Dockerfile "COPY" and "ADD" entries.
14+ - ' composer.json'
15+ - ' server/'
16+ - ' src/'
1117 types : [ opened, reopened, synchronize ]
1218 # This event occurs when there is a push to the repository.
1319 push :
1420 paths :
21+ - ' .config/hadolint.yml'
22+ - ' .dockerignore'
1523 - ' Dockerfile'
24+ # Docker project specific, Dockerfile "COPY" and "ADD" entries.
25+ - ' composer.json'
26+ - ' server/'
27+ - ' src/'
1628 # Allow manually triggering the workflow.
1729 workflow_dispatch :
1830
3547 with :
3648 args : >-
3749 hadolint
50+ --config .config/hadolint.yml
You can’t perform that action at this time.
0 commit comments