Check Cirrus CI #2346
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Cirrus CI | |
on: | |
check_suite: | |
type: ['completed'] | |
jobs: | |
notify-failure: | |
name: Notify failure | |
if: github.event.check_suite.app.name == 'Cirrus CI' && github.event.check_suite.conclusion == 'failure' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: octokit/[email protected] | |
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 }} |