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 792926f commit 6fc1421Copy full SHA for 6fc1421
.github/workflows/files-changed.yml
@@ -29,10 +29,6 @@ jobs:
29
id: changes
30
with:
31
filters:
32
- docs:
33
- - "**/*.md"
34
- - "docs/**"
35
-
36
backend:
37
- "**/*.go"
38
- "**/*.tmpl"
@@ -44,3 +40,10 @@ jobs:
44
40
- "web_src/**"
45
41
- "package.json"
46
42
- "package-lock.json"
43
+
+ docs:
+ - "**/*.md"
+ - "docs/**"
47
48
+ actions:
49
+ - ".github/workflows/*"
.github/workflows/pull-compliance.yml
@@ -131,3 +131,12 @@ jobs:
131
- run: make deps-frontend
132
- run: make lint-md
133
- run: make docs # test if build could succeed
134
135
136
+ if: needs.files-changed.outputs.actions == 'true'
137
+ needs: files-changed
138
+ runs-on: ubuntu-latest
139
+ steps:
140
+ - uses: actions/checkout@v3
141
+ - uses: actions/setup-go@v4
142
+ - run: make lint-actions
0 commit comments