From 96ea64a13d709d68e932da3adbed0f66131cafdf Mon Sep 17 00:00:00 2001 From: Adam Amer <136176500+adamamer20@users.noreply.github.com> Date: Tue, 2 Jul 2024 09:34:28 +0200 Subject: [PATCH] removed issue dependency check --- .github/workflows/issues-dependency-check.yml | 43 ------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/issues-dependency-check.yml diff --git a/.github/workflows/issues-dependency-check.yml b/.github/workflows/issues-dependency-check.yml deleted file mode 100644 index ba13f16..0000000 --- a/.github/workflows/issues-dependency-check.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Issues Dependency Check -on: - pull_request: - types: [opened, synchronize, reopened, edited] - pull_request_review: - types: [submitted, edited, dismissed] -jobs: - check-dependencies: - runs-on: ubuntu-latest - steps: - - name: Check for unresolved dependencies - uses: actions/github-script@v7 - with: - script: | - // Updated regex to match multiple issue numbers - const issueRegex = /depends on #(\\d+(?:\\s+#\\d+)*)/ig; - - async function run() { - let match; - let blockingIssues = []; - - // Find issues mentioned in the description - while ((match = issueRegex.exec(context.payload.body)) !== null) { - const issues = match[1].split(/\\s+#/); - for (const issueNumber of issues) { - const { data: issue } = await github.rest.issues.get({ - owner: adamamer20, - repo: mesa_frames, - issue_number: parseInt(issueNumber), - }); - - if (issue.state === 'open') { - blockingIssues.push(issueNumber); - } - } - } - - if (blockingIssues.length > 0) { - core.setFailed(`Cannot merge PR because these issues are not resolved: #${blockingIssues.join(', #')}`); - } - } - - run().catch(error => core.setFailed(error.message)); \ No newline at end of file