-
-
Notifications
You must be signed in to change notification settings - Fork 66
29 lines (26 loc) · 765 Bytes
/
super-linter.yml
File metadata and controls
29 lines (26 loc) · 765 Bytes
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
name: Super-Linter
on: [pull_request]
permissions: {}
jobs:
build:
name: Run Super-Linter
runs-on: ubuntu-latest
permissions:
# contents permission to clone the repository
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v6
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
persist-credentials: false
- name: Super-Linter
uses: super-linter/super-linter@v8.3.2
env:
ERROR_ON_MISSING_EXEC_BIT: true
VALIDATE_EDITORCONFIG: true
VALIDATE_MARKDOWN: true
VALIDATE_YAML: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}