From 3f0b7d7c1f5403e222938097196bea4f6b0cbfcc Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Sun, 12 Nov 2023 20:03:10 +0100 Subject: [PATCH] Comment out broken CI pipelines --- .github/workflows/email.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/email.yml diff --git a/.github/workflows/email.yml b/.github/workflows/email.yml deleted file mode 100644 index 19172d6fbd6d..000000000000 --- a/.github/workflows/email.yml +++ /dev/null @@ -1,25 +0,0 @@ -on: - check_suite: - type: ['completed'] - -name: Email about Cirrus CI failures -jobs: - continue: - name: After Cirrus CI Failure - if: github.event.check_suite.app.name == 'Cirrus CI' && github.event.check_suite.conclusion != 'success' - runs-on: ubuntu-latest - steps: - - uses: octokit/request-action@v2.x - id: get_failed_check_run - with: - route: GET /repos/${{ github.repository }}/check-suites/${{ github.event.check_suite.id }}/check-runs?status=completed - mediaType: '{"previews": ["antiope"]}' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: | - echo "Cirrus CI ${{ github.event.check_suite.conclusion }} on ${{ github.event.check_suite.head_branch }} branch!" - echo "SHA ${{ github.event.check_suite.head_sha }}" - echo $MESSAGE - echo "##[error]See $CHECK_RUN_URL for details" && false - env: - CHECK_RUN_URL: ${{ fromJson(steps.get_failed_check_run.outputs.data).check_runs[0].html_url }}