diff --git a/.github/workflows/discord-notify.yml b/.github/workflows/discord-notify.yml new file mode 100644 index 00000000000..efc8d40559e --- /dev/null +++ b/.github/workflows/discord-notify.yml @@ -0,0 +1,16 @@ +name: Notify Discord on Release + +on: + release: + types: [published] + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Send Notification to Discord + uses: Ilshidur/action-discord@2.4.0 + with: + args: "A new release of ibc-go has been tagged! View it here: ${{ github.event.release.html_url }}" + webhook: ${{ secrets.DISCORD_WEBHOOK }} +