From b076c3f97eb52bd6adec890da77b38e5e58d858c Mon Sep 17 00:00:00 2001 From: Adi <103246632+adiraviraj@users.noreply.github.com> Date: Fri, 20 Oct 2023 09:17:58 +0200 Subject: [PATCH 1/2] Create discord_notify.yml Add GitHub Action for Discord release notifications --- .github/workflows/discord_notify.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/discord_notify.yml 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 }} + From f45d741ef461ee71d9027811e77c4463a3005ae6 Mon Sep 17 00:00:00 2001 From: Adi <103246632+adiraviraj@users.noreply.github.com> Date: Mon, 23 Oct 2023 10:43:50 +0200 Subject: [PATCH 2/2] Rename discord_notify.yml to discord-notify.yml --- .github/workflows/{discord_notify.yml => discord-notify.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{discord_notify.yml => discord-notify.yml} (100%) diff --git a/.github/workflows/discord_notify.yml b/.github/workflows/discord-notify.yml similarity index 100% rename from .github/workflows/discord_notify.yml rename to .github/workflows/discord-notify.yml