fix: remove CI failure tracker (references nonexistent CORE CI workflow)

This commit is contained in:
Alexa Amundson
2026-03-14 14:10:34 -05:00
parent c7b12755b3
commit 670e982d7d

View File

@@ -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
})