diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2023-10-20 08:00:22 +0900 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2023-10-19 16:06:32 -0700 |
| commit | b93553bb7e292a6eb83bbb60532b60126393534f (patch) | |
| tree | 7dc1225e5d0994d8936f2b0573df74e3d8619db7 | |
| parent | 08e25985d1cadf9487e0a02f3956236e1158b210 (diff) | |
Cirrus CI has been removed [ci skip]
| -rw-r--r-- | .github/workflows/cirrus-notify.yml | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/.github/workflows/cirrus-notify.yml b/.github/workflows/cirrus-notify.yml deleted file mode 100644 index 295562ac63..0000000000 --- a/.github/workflows/cirrus-notify.yml +++ /dev/null @@ -1,52 +0,0 @@ -on: - check_suite: - types: ['completed'] -name: Cirrus CI failure notification - -permissions: - contents: read - -jobs: - cirrus-notify: - name: After Cirrus CI Failure - if: >- - github.event.check_suite.app.name == 'Cirrus CI' - && github.event.check_suite.conclusion != 'success' - && github.event.check_suite.conclusion != 'cancelled' - && github.event.check_suite.conclusion != 'neutral' - && github.event.check_suite.conclusion != 'skipped' - && github.event.check_suite.head_branch == 'master' - - runs-on: ubuntu-latest - - steps: - - uses: octokit/request-action@89697eb6635e52c6e1e5559f15b5c91ba5100cb0 # v2.1.9 - 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 }} - - - name: Dump GitHub context - env: - GITHUB_CONTEXT: ${{ toJson(github) }} - run: echo "$GITHUB_CONTEXT" - - - name: Dump check_runs - env: - CHECK_RUNS: ${{ steps.get_failed_check_run.outputs.data }} - run: echo "$CHECK_RUNS" - - - uses: ruby/action-slack@0bd85c72233cdbb6a0fe01d37aaeff1d21b5fce1 # v3.2.1 - with: - payload: | - { - "ci": "Cirrus CI", - "env": "Cirrus CI", - "url": "${{ fromJson(steps.get_failed_check_run.outputs.data).check_runs[0].html_url }}", - "commit": "${{ github.event.check_suite.head_commit.id }}", - "branch": "${{ github.event.check_suite.head_branch }}" - } - env: - SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot |
