From 586ba56d7d6bfc240d0a3e90300fc7172cd9f060 Mon Sep 17 00:00:00 2001 From: Alexa Amundson <118287761+blackboxprogramming@users.noreply.github.com> Date: Sat, 14 Mar 2026 14:10:29 -0500 Subject: [PATCH] fix: remove CI failure tracker (references nonexistent CORE CI workflow) --- .github/workflows/failure-issue.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/failure-issue.yml diff --git a/.github/workflows/failure-issue.yml b/.github/workflows/failure-issue.yml deleted file mode 100644 index 49eca3d..0000000 --- a/.github/workflows/failure-issue.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: CI Failure Tracker - -on: - workflow_run: - workflows: ["CORE CI", ".github/workflows/core-ci.yml"] - types: [completed] - -jobs: - report: - if: ${{ github.event.workflow_run.conclusion == 'failure' }} - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v7 - with: - script: | - await github.rest.issues.create({ - ...context.repo, - title: "CI failed: " + context.payload.workflow_run.name, - body: context.payload.workflow_run.html_url - })