-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit a4b227d
Fix changelog entry filter regular expression syntax
The previous case insensitive flag syntax is not supported in JavaScript regular expressions, resulting in an error from the `arduino/create-changelog` action:
Invalid regular expression: /^(?i)\[(skip|changelog)[ ,-](skip|changelog)\].*/: Invalid group
I couldn't find a valid way to specify the i flag, so I used the brute force approach to achieve case-insensitivity.1 parent cbac732 commit a4b227d
1 file changed
+1
-1
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
22 | - | ||
22 | + | ||
23 | 23 |
| |
24 | 24 |
| |
25 | 25 |
| |
|
0 commit comments