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 52944eb commit ce53d2e
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/issues-dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,11 @@ jobs:
- name: Check for unresolved dependencies
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
// Updated regex to match multiple issue numbers
const issueRegex = /depends on #(\\d+(?:\\s+#\\d+)*)/ig;
async function run() {
// Get the PR description
const { data: pullRequest } = await github.rest.pulls.get({
owner: github.repository_owner,
repo: github.repository,
pull_number: context.issue.number,
});
const description = pullRequest.body;
let match;
let blockingIssues = [];
Expand Down

0 comments on commit ce53d2e

Please sign in to comment.