Report CI Status #310
This file contains 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: Report CI Status | |
on: | |
workflow_run: | |
workflows: | |
- CI | |
types: | |
- completed | |
branches: | |
- master | |
jobs: | |
report: | |
name: Report CI Status | |
runs-on: ubuntu-latest | |
steps: | |
- name: On Failed | |
if: ${{ github.event.workflow_run.conclusion == 'failure' }} | |
uses: schneegans/[email protected] | |
with: | |
auth: ${{ secrets.CI_GIST_TOKEN }} | |
gistID: a488eb0391a5fc6a2918d13184cd0a26 | |
filename: smve_ci.svg | |
label: CI | |
message: Failing | |
logoColor: cdd6f4 | |
labelColor: 313244 | |
color: f38ba8 | |
namedLogo: github | |
style: for-the-badge | |
- name: On Success | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
uses: schneegans/[email protected] | |
with: | |
auth: ${{ secrets.CI_GIST_TOKEN }} | |
gistID: a488eb0391a5fc6a2918d13184cd0a26 | |
filename: smve_ci.json | |
label: CI | |
message: Passing | |
logoColor: cdd6f4 | |
labelColor: 313244 | |
color: a6e3a1 | |
namedLogo: github | |
style: for-the-badge | |
discord: | |
name: Report failure to discord | |
if: ${{ github.event.workflow_run.conclusion == 'failure' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Report | |
uses: appleboy/discord-action@master | |
with: | |
webhook_id: ${{ secrets.WEBHOOK_ID }} | |
webhook_token: ${{ secrets.WEBHOOK_TOKEN }} | |
message: "Github actions failed for SMve. https://github.com/smve-rs/smve/actions" | |
color: "#f38ba8" |