Skip to content

Commit 4468a4f

Browse files
committed
Uncommented the paths-ignore in CI config files
The paths-ignore were a comment, now the .github folder gets again ignored by the CI.
1 parent a4228cf commit 4468a4f

File tree

9 files changed

+32
-32
lines changed

9 files changed

+32
-32
lines changed

.github/workflows/ansible-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ name: "Run ansible tests"
77
on:
88
push:
99
branches: [develop, maintenance, master]
10-
# paths-ignore:
11-
# - '.github/**'
10+
paths-ignore:
11+
- '.github/**'
1212
pull_request:
1313
branches: [develop, maintenance]
14-
# paths-ignore:
15-
# - '.github/**'
14+
paths-ignore:
15+
- '.github/**'
1616

1717
jobs:
1818
ansible:

.github/workflows/build-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ name: "Build the documentation with sphinx"
77
on:
88
push:
99
branches: [develop, maintenance, master]
10-
# paths-ignore:
11-
# - '.github/**'
10+
paths-ignore:
11+
- '.github/**'
1212
pull_request:
1313
branches: [develop, maintenance]
14-
# paths-ignore:
15-
# - '.github/**'
14+
paths-ignore:
15+
- '.github/**'
1616

1717
jobs:
1818
documentationbuild:

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ name: "CodeQL"
77
on:
88
push:
99
branches: [develop, maintenance, master]
10-
# paths-ignore:
11-
# - '.github/**'
10+
paths-ignore:
11+
- '.github/**'
1212
pull_request:
1313
branches: [develop, maintenance]
14-
# paths-ignore:
15-
# - '.github/**'
14+
paths-ignore:
15+
- '.github/**'
1616
schedule:
1717
- cron: '0 16 * * 5'
1818

.github/workflows/codespell.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ name: "Codespell spelling check"
88
on:
99
push:
1010
branches: [develop, maintenance, master]
11-
# paths-ignore:
12-
# - '.github/**'
11+
paths-ignore:
12+
- '.github/**'
1313
pull_request:
1414
branches: [develop, maintenance]
15-
# paths-ignore:
16-
# - '.github/**'
15+
paths-ignore:
16+
- '.github/**'
1717

1818
jobs:
1919
codespell:

.github/workflows/debian-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ name: "Build Debian packages"
77
on:
88
push:
99
branches: [develop, maintenance, master]
10-
# paths-ignore:
11-
# - '.github/**'
10+
paths-ignore:
11+
- '.github/**'
1212
pull_request:
1313
branches: [develop, maintenance]
14-
# paths-ignore:
15-
# - '.github/**'
14+
paths-ignore:
15+
- '.github/**'
1616

1717
jobs:
1818
build:

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ name: "Build and upload docker image"
88
on:
99
push:
1010
branches: ['develop']
11-
# paths-ignore:
12-
# - '.github/**'
11+
paths-ignore:
12+
- '.github/**'
1313

1414
jobs:
1515
docker:

.github/workflows/pycodestyle.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ name: "Run pycodestyle on repository"
88
on:
99
push:
1010
branches: [develop, maintenance, master]
11-
# paths-ignore:
12-
# - '.github/**'
11+
paths-ignore:
12+
- '.github/**'
1313
pull_request:
1414
branches: [develop, maintenance]
15-
# paths-ignore:
16-
# - '.github/**'
15+
paths-ignore:
16+
- '.github/**'
1717

1818
jobs:
1919
pycodestyle:

.github/workflows/regexploit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ name: "Regular expression check"
99
on:
1010
push:
1111
branches: [develop, maintenance, master]
12-
# paths-ignore:
13-
# - '.github/**'
12+
paths-ignore:
13+
- '.github/**'
1414
pull_request:
1515
branches: [develop, maintenance]
16-
# paths-ignore:
17-
# - '.github/**'
16+
paths-ignore:
17+
- '.github/**'
1818

1919
jobs:
2020
regexploit:

.github/workflows/unittests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ on:
88
push:
99
pull_request:
1010
branches: [develop, maintenance]
11-
# paths-ignore:
12-
# - '.github/**'
11+
paths-ignore:
12+
- '.github/**'
1313

1414
jobs:
1515
unittests:

0 commit comments

Comments
 (0)