From 9128ff06a42f3c6a137679e1c3a179d87d78d38d Mon Sep 17 00:00:00 2001 From: Tushar Mathur Date: Sun, 22 Sep 2024 16:50:47 +0530 Subject: [PATCH] chore: update ci YML --- .github/workflows/ci.yml | 12 ---------- .github/workflows/discord.yml | 42 +++++++++++++++++++---------------- 2 files changed, 23 insertions(+), 31 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d003e17244..06e6fb165f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -473,15 +473,3 @@ jobs: - name: Update Homebrew Formula run: ./update-formula.sh ${{needs.draft_release.outputs.create_release_name }} - - failure-notification: - runs-on: ubuntu-latest - steps: - - name: Notify failure on Discord - if: ${{ always() && contains(needs.*.result, 'failure') }} - uses: discord-actions/message@v2 - with: - webhookUrl: ${{ secrets.DISCORD_WEBHOOK_URL }} - message: | - Build failed on branch: ${{ github.ref }} - Link: ${{ github.repository }}/actions/runs/${{ github.run_id }} diff --git a/.github/workflows/discord.yml b/.github/workflows/discord.yml index c09eb7677f..1a8244ba66 100644 --- a/.github/workflows/discord.yml +++ b/.github/workflows/discord.yml @@ -1,13 +1,17 @@ name: Notify on Workflow Failure and Fix on: + push: + branches: + - main workflow_run: - workflows: ["*"] # This listens to all workflows + workflows: ["*"] types: - completed jobs: notify: + if: ${{ github.event.workflow_run.conclusion == 'failure' }} runs-on: ubuntu-latest steps: - name: Check Previous Run Status @@ -23,24 +27,24 @@ jobs: DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} run: | curl -H "Content-Type: application/json" \ - -X POST \ - -d '{ + -X POST \ + -d '{ "content": "**Workflow Failure Detected on Main Branch** :x:", "embeds": [ - { + { "author": { - "name": "GitHub Actions Bot", - "icon_url": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png", - "url": "https://github.com/${{ github.repository }}" + "name": "GitHub Actions Bot", + "icon_url": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png", + "url": "https://github.com/${{ github.repository }}" }, "title": "Workflow: '${{ github.event.workflow_run.name }}'", "description": "The workflow **${{ github.event.workflow_run.name }}** has failed on the main branch.", "url": "${{ github.event.workflow_run.html_url }}", "color": 15158332 - } + } ] - }' \ - $DISCORD_WEBHOOK_URL + }' \ + $DISCORD_WEBHOOK_URL - name: Send Discord Notification on Fix if: ${{ github.event.workflow_run.conclusion == 'success' && env.previous_status == 'failure' }} @@ -48,21 +52,21 @@ jobs: DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} run: | curl -H "Content-Type: application/json" \ - -X POST \ - -d '{ + -X POST \ + -d '{ "content": "**Workflow Fixed on Main Branch** :white_check_mark:", "embeds": [ - { + { "author": { - "name": "GitHub Actions Bot", - "icon_url": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png", - "url": "https://github.com/${{ github.repository }}" + "name": "GitHub Actions Bot", + "icon_url": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png", + "url": "https://github.com/${{ github.repository }}" }, "title": "Workflow: '${{ github.event.workflow_run.name }}' Fixed", "description": "The workflow **${{ github.event.workflow_run.name }}** has been fixed on the main branch.", "url": "${{ github.event.workflow_run.html_url }}", "color": 3066993 - } + } ] - }' \ - $DISCORD_WEBHOOK_URL + }' \ + $DISCORD_WEBHOOK_URL