Skip to content

Commit 488473f

Browse files
Merge pull request #603 from weslleyspereira/minor-fixes
Fix patterns in the GitHub workflows
2 parents 7a4c63b + d4d5238 commit 488473f

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

.github/workflows/cmake.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@ on:
88
paths:
99
- .github/workflows/cmake.yml
1010
- '**CMakeLists.txt'
11-
- 'BLAS'
12-
- 'CBLAS'
13-
- 'CMAKE'
14-
- 'INSTALL'
15-
- 'LAPACKE'
16-
- 'SRC'
17-
- 'TESTING'
11+
- 'BLAS/**'
12+
- 'CBLAS/**'
13+
- 'CMAKE/**'
14+
- 'INSTALL/**'
15+
- 'LAPACKE/**'
16+
- 'SRC/**'
17+
- 'TESTING/**'
1818
- '!**README'
1919
- '!**Makefile'
2020
- '!**md'
2121
pull_request:
2222
paths:
2323
- .github/workflows/cmake.yml
2424
- '**CMakeLists.txt'
25-
- 'BLAS'
26-
- 'CBLAS'
27-
- 'CMAKE'
28-
- 'INSTALL'
29-
- 'LAPACKE'
30-
- 'SRC'
31-
- 'TESTING'
25+
- 'BLAS/**'
26+
- 'CBLAS/**'
27+
- 'CMAKE/**'
28+
- 'INSTALL/**'
29+
- 'LAPACKE/**'
30+
- 'SRC/**'
31+
- 'TESTING/**'
3232
- '!**README'
3333
- '!**Makefile'
3434
- '!**md'

.github/workflows/makefile.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ on:
88
paths:
99
- .github/workflows/makefile.yml
1010
- '**Makefile'
11-
- 'BLAS'
12-
- 'CBLAS'
13-
- 'INSTALL'
14-
- 'LAPACKE'
15-
- 'SRC'
16-
- 'TESTING'
11+
- 'BLAS/**'
12+
- 'CBLAS/**'
13+
- 'INSTALL/**'
14+
- 'LAPACKE/**'
15+
- 'SRC/**'
16+
- 'TESTING/**'
1717
- '!**README'
1818
- '!**CMakeLists.txt'
1919
- '!**md'
2020
pull_request:
2121
paths:
2222
- .github/workflows/makefile.yml
2323
- '**Makefile'
24-
- 'BLAS'
25-
- 'CBLAS'
26-
- 'INSTALL'
27-
- 'LAPACKE'
28-
- 'SRC'
29-
- 'TESTING'
24+
- 'BLAS/**'
25+
- 'CBLAS/**'
26+
- 'INSTALL/**'
27+
- 'LAPACKE/**'
28+
- 'SRC/**'
29+
- 'TESTING/**'
3030
- '!**README'
3131
- '!**CMakeLists.txt'
3232
- '!**md'

0 commit comments

Comments
 (0)