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 cef985d commit 51341d5Copy full SHA for 51341d5
.github/workflows/pr-file-check.yml
@@ -49,7 +49,7 @@ jobs:
49
script: |
50
const labels = context.payload.pull_request.labels.map(label => label.name);
51
if (!labels.includes('skip-issue-check')) {
52
- const issueNumber = context.payload.pull_request.body.match(/#(\d+)/);
+ const issueNumber = context.payload.pull_request.body.match(/#\d+/);
53
if (!issueNumber) {
54
core.setFailed('No associated issue found in the PR description.');
55
}
0 commit comments