Skip to content

Commit 8f1d45e

Browse files
committed
Improve the GH Actions path filters
1 parent 8987f8f commit 8f1d45e

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/automated-dev-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ name: 'Development Pipeline'
44
on:
55
push:
66
paths-ignore:
7+
- 'LICENSE'
8+
- 'README.rst'
79
- 'docs/**'
810
- 'share/**'
911
- 'vs-build/**'
1012

1113
pull_request:
1214
types: [opened, synchronize, edited, reopened] #labeled, assigned]
13-
paths-ignore:
14-
- 'docs/**'
15-
- 'share/**'
16-
- 'vs-build/**'
15+
# Pull request event triggers are unrelated to paths
16+
# paths-ignore:
1717

1818
env:
1919
FORTRAN_COMPILER: gfortran-10

.github/workflows/conda-deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ name: 'Conda Deployment Pipeline'
33

44
on:
55
push:
6+
branches:
7+
- 'dev'
68
paths-ignore:
9+
- 'LICENSE'
10+
- 'README.rst'
711
- 'docs/**'
812
- 'share/**'
913
- 'vs-build/**'
10-
branches:
11-
- 'dev'
1214

1315
jobs:
1416
update-dev:

0 commit comments

Comments
 (0)