Skip to content

Commit

Permalink
fix dep. check
Browse files Browse the repository at this point in the history
  • Loading branch information
adamamer20 committed Feb 3, 2024
1 parent 6d4009a commit 0fc05a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/issues-dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
let blockingIssues = [];
// Find issues mentioned in the description
while ((match = issueRegex.exec(context.github.event.body)) !== null) {
while ((match = issueRegex.exec(context.event.body)) !== null) {
const issues = match[1].split(/\\s+#/);
for (const issueNumber of issues) {
const { data: issue } = await github.rest.issues.get({
Expand Down

0 comments on commit 0fc05a6

Please sign in to comment.