We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7cbb51 commit b43e956Copy full SHA for b43e956
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "recently-closed-issues",
3
- "version": "1.0.0",
+ "version": "1.1.0",
4
"description": "This GitHub Action provides an easy way to retrieve all issues that were recently closed by a commit",
5
"main": "src/index.js",
6
"scripts": {
src/index.js
@@ -29,7 +29,7 @@ async function run() {
29
let message = commits.data[i].commit.message;
30
31
for (let k in keywords) {
32
- let regexp = new RegExp(keywords[k] + ' #([0-9]+)');
+ let regexp = new RegExp(keywords[k] + ' #([0-9]+)', 'gi');
33
let match = regexp.exec(message);
34
35
while (match != null) {
0 commit comments