Skip to content

Commit

Permalink
Switch slack notifications to discord
Browse files Browse the repository at this point in the history
  • Loading branch information
jakzal committed Feb 15, 2023
1 parent 811e07f commit df46c91
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,13 @@ jobs:
name: designer.zip
path: dist/designer.zip

- name: Notify slack
- name: Notify discord
if: always() && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) && github.repository_owner == 'vlingo'
uses: rtCamp/action-slack-notify@v2
uses: 'Ilshidur/action-discord@0.3.2'
env:
SLACK_COLOR: "${{ job.status == 'success' && 'good' || 'danger' }}"
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_CHANNEL: ci-cd
SLACK_USERNAME: Bob the Builder
SLACK_ICON: 'https://vlingo.io/wp-content/uploads/cropped-vlingo-favicon-180x180.png'
SLACK_FOOTER: '${{ github.repository }}'
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
DISCORD_USERNAME: Bob the Builder
DISCORD_EMBEDS: '[{"title":"Build ${{ job.status }}", "description":"[${{ github.repository }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})","author": { "icon_url": "https://avatars.githubusercontent.com/${{ github.actor }}", "name": "${{ github.actor }}", "url": "${{ github.server_url }}/${{ github.actor }}"},"color":"${{ job.status == ''success'' && ''65280'' || ''16711680'' }}"}]'

- name: Cleanup
run: rm -rf ~/.m2/repository/io/vlingo
Expand Down Expand Up @@ -148,15 +145,10 @@ jobs:
org.opencontainers.image.created=${{ steps.version.outputs.created }}
org.opencontainers.image.revision=${{ github.sha }}
- name: Notify slack
- name: Notify discord
if: failure() && steps.version.outputs.push == 'true'
uses: rtCamp/action-slack-notify@v2
uses: 'Ilshidur/action-discord@0.3.2'
env:
SLACK_COLOR: "${{ job.status == 'success' && 'good' || 'danger' }}"
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_CHANNEL: ci-cd
SLACK_USERNAME: Suzi the Publisher
SLACK_ICON: 'https://vlingo.io/wp-content/uploads/cropped-vlingo-favicon-180x180.png'
SLACK_FOOTER: '${{ github.repository }}'
SLACK_TITLE: 'Docker Image'
SLACK_MESSAGE: ':rocket: ${{ steps.version.outputs.version }}'
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
DISCORD_USERNAME: Suzi the Publisher
DISCORD_EMBEDS: '[{"title":"Docker Image Build ${{ job.status }}", "description":":rocket: [${{ github.repository }}:${{ steps.version.outputs.xoom_version }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})","author": { "icon_url": "https://avatars.githubusercontent.com/${{ github.actor }}", "name": "${{ github.actor }}", "url": "${{ github.server_url }}/${{ github.actor }}"},"color":"${{ job.status == ''success'' && ''65280'' || ''16711680'' }}"}]'

0 comments on commit df46c91

Please # to comment.