From 56327619778f3edb7c9a3747d50b793051fb68ec Mon Sep 17 00:00:00 2001 From: Patrick Dodgen Date: Wed, 24 Jun 2026 15:24:40 -0600 Subject: [PATCH] ci: remove notify-ci-failure workflow (moved to encodium/actions) The CI-failure Slack notifier now lives at encodium/actions/.github/workflows/notify-ci-failure.yaml and all callers reference it there. No remaining consumers of this copy. --- .github/workflows/notify-ci-failure.yaml | 42 ------------------------ 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/notify-ci-failure.yaml diff --git a/.github/workflows/notify-ci-failure.yaml b/.github/workflows/notify-ci-failure.yaml deleted file mode 100644 index e11b0ec..0000000 --- a/.github/workflows/notify-ci-failure.yaml +++ /dev/null @@ -1,42 +0,0 @@ -name: Notify CI Failure -on: - workflow_call: - inputs: - workflow: - description: "Name of the workflow that failed" - required: true - type: string - run_url: - description: "URL of the failed run" - required: true - type: string - head_sha: - description: "Commit SHA the failed run was for" - required: true - type: string - branch: - required: false - type: string - default: "" - actor: - required: false - type: string - default: "" - secrets: - slack_webhook_url: - required: true - -jobs: - notify: - name: Notify Slack - runs-on: ubuntu-latest - steps: - - name: Post failure to Slack - uses: slackapi/slack-github-action@v2 - with: - webhook: ${{ secrets.slack_webhook_url }} - webhook-type: incoming-webhook - payload: | - { - "text": ":rotating_light: *${{ github.repository }}* — *${{ inputs.workflow }}* failed on `${{ inputs.branch }}`\n*By:* ${{ inputs.actor }} · *Commit:* <${{ github.server_url }}/${{ github.repository }}/commit/${{ inputs.head_sha }}|${{ inputs.head_sha }}>\n<${{ inputs.run_url }}|View failed run>" - }