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 6bba791 commit 05d8232Copy full SHA for 05d8232
.github/workflows/superlinter.yml
@@ -1,17 +1,25 @@
1
+# .github/workflows/superlinter.yml
2
+
3
name: Super-Linter
4
5
on:
6
push:
7
branches:
8
- main
- - 'feature/**'
9
pull_request:
10
11
+permissions:
12
+ contents: read # needed to checkout your code
13
+ statuses: write # needed to post status checks back to GitHub
14
15
jobs:
16
lint:
17
runs-on: ubuntu-latest
18
19
steps:
- - uses: actions/checkout@v4
20
+ - name: Checkout code
21
+ uses: actions/checkout@v4
22
23
- name: Run Super-Linter
24
uses: github/super-linter/slim@v6
25
env:
0 commit comments