-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (52 loc) · 1.39 KB
/
Copy pathlint.yml
File metadata and controls
58 lines (52 loc) · 1.39 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
---
name: Lint
# yamllint disable rule:truthy
"on":
push:
branches:
- main
- master
- "claude/**"
pull_request:
branches:
- main
- master
permissions: {}
jobs:
build:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout code
# actions/checkout v4.2.2
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 0
persist-credentials: false
- name: Super-linter
# super-linter v8.6.0
uses: super-linter/super-linter@9e863354e3ff62e0727d37183162c4a88873df41
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: master
VALIDATE_ALL_CODEBASE: false
VALIDATE_BASH: true
VALIDATE_BASH_EXEC: true
VALIDATE_CHECKOV: true
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_GITHUB_ACTIONS_ZIZMOR: true
VALIDATE_GITLEAKS: true
VALIDATE_GIT_MERGE_CONFLICT_MARKERS: true
VALIDATE_JSON: true
VALIDATE_JSON_PRETTIER: true
VALIDATE_MARKDOWN: true
VALIDATE_MARKDOWN_PRETTIER: true
VALIDATE_RENOVATE: true
VALIDATE_SHELL_SHFMT: true
VALIDATE_TRIVY: true
VALIDATE_YAML: true
VALIDATE_YAML_PRETTIER: true