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 1d968a3 commit 6d4009a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/issues-dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
let blockingIssues = [];
// Find issues mentioned in the description
while ((match = issueRegex.exec(github.event.body)) !== null) {
while ((match = issueRegex.exec(context.github.event.body)) !== null) {
const issues = match[1].split(/\\s+#/);
for (const issueNumber of issues) {
const { data: issue } = await github.rest.issues.get({
owner: github.repository_owner,
repo: github.repository,
owner: adamamer20,
repo: mesa_frames,
issue_number: parseInt(issueNumber),
});
Expand Down

0 comments on commit 6d4009a

Please sign in to comment.