From 8e4ae64cd3a3e8e6cef31c0ce6ffb6782eb29bbb Mon Sep 17 00:00:00 2001 From: Spythere Date: Mon, 15 Apr 2024 15:13:22 +0200 Subject: [PATCH] chore(workflows): added release discord webhook notification --- .github/workflows/github-discord-releases.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/github-discord-releases.yml diff --git a/.github/workflows/github-discord-releases.yml b/.github/workflows/github-discord-releases.yml new file mode 100644 index 0000000..c9cdc72 --- /dev/null +++ b/.github/workflows/github-discord-releases.yml @@ -0,0 +1,17 @@ +on: + release: + types: [published] + +jobs: + github-releases-to-discord: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Github Releases To Discord + uses: SethCohen/github-releases-to-discord@v1.13.1 + with: + webhook_url: ${{ secrets.WEBHOOK_URL }} + color: "2105893" + footer_title: "Changelog - Stacjownik" + footer_timestamp: true \ No newline at end of file