Skip to content

Commit c07d17e

Browse files
committed
Fix indentation + comment wrt paths_ignore
1 parent 00476b7 commit c07d17e

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

.github/workflows/shellcheck.yml

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
1+
# Runs shellcheck on code -- in error mode only.
2+
# "paths-ignore" should be in line with unit_test.*yml files
13
---
24
name: Shellcheck
3-
on: [pull_request]
4-
paths-ignore:
5-
- 'utils/**'
6-
- 'doc/**'
7-
- 'bin/**'
8-
- '**.md'
9-
- '**.1'
10-
- '**.html'
11-
- '**.pem'
12-
- '**.pdf'
13-
- '**.yml'
14-
- 'LICENSE'
15-
- 'Dockerfile'
16-
- 'Dockerfile.alpine'
5+
6+
on:
7+
pull_request:
8+
paths-ignore:
9+
- 'utils/**'
10+
- 'doc/**'
11+
- 'bin/**'
12+
- '**.md'
13+
- '**.1'
14+
- '**.html'
15+
- '**.pem'
16+
- '**.pdf'
17+
- '**.yml'
18+
- 'LICENSE'
19+
- 'Dockerfile'
20+
- 'Dockerfile.alpine'
21+
1722
permissions:
1823
contents: read
1924

0 commit comments

Comments
 (0)