Skip to content

Commit 815a613

Browse files
committed
Make "Check License" workflow's path triggers case insensitive
The license detection system is case insensitive, so the workflow should be also.
1 parent f9c2f0e commit 815a613

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/check-license.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ on:
99
push:
1010
paths:
1111
- ".github/workflows/check-license.ya?ml"
12-
# Recognized license files. See: https://github.com/licensee/licensee/blob/master/docs/what-we-look-at.md#detecting-the-license-file
13-
- "COPYING*"
14-
- "LICENCE*"
15-
- "LICENSE*"
12+
# See: https://github.com/licensee/licensee/blob/master/docs/what-we-look-at.md#detecting-the-license-file
13+
- "[cC][oO][pP][yY][iI][nN][gG]*"
14+
- "[cC][oO][pP][yY][rR][iI][gG][hH][tH]*"
15+
- "[lL][iI][cC][eE][nN][cCsS][eE]*"
1616
pull_request:
1717
paths:
1818
- ".github/workflows/check-license.ya?ml"
19-
- "COPYING*"
20-
- "LICENCE*"
21-
- "LICENSE*"
19+
- "[cC][oO][pP][yY][iI][nN][gG]*"
20+
- "[cC][oO][pP][yY][rR][iI][gG][hH][tH]*"
21+
- "[lL][iI][cC][eE][nN][cCsS][eE]*"
2222

2323
jobs:
2424
check-license:

0 commit comments

Comments
 (0)