summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-cd.yml4
-rw-r--r--.github/workflows/discord-closed-issues.yml2
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml
index 49149038..f706b99e 100644
--- a/.github/workflows/ci-cd.yml
+++ b/.github/workflows/ci-cd.yml
@@ -88,7 +88,7 @@ jobs:
- name: Notify deploy start
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_SEVEN_WONDERS }}
- uses: Ilshidur/action-discord@0.3.0
+ uses: Ilshidur/action-discord@0.3.2
with:
args: "[Build #${{github.run_id}}](<https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}>): Deploying new version `${{ env.DOCKERHUB_USER }}/${{ env.DOCKER_IMAGE_NAME }}:${{ env.DOCKER_IMAGE_TAG_BUILD }}` ([see changes](<{{ EVENT_PAYLOAD.compare }}>))..."
@@ -101,6 +101,6 @@ jobs:
- name: Notify deploy success
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_SEVEN_WONDERS }}
- uses: Ilshidur/action-discord@0.3.0
+ uses: Ilshidur/action-discord@0.3.2
with:
args: 'Deployment successful!'
diff --git a/.github/workflows/discord-closed-issues.yml b/.github/workflows/discord-closed-issues.yml
index 7ade5e51..40544984 100644
--- a/.github/workflows/discord-closed-issues.yml
+++ b/.github/workflows/discord-closed-issues.yml
@@ -13,6 +13,6 @@ jobs:
- name: Send closed issue notif
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_SEVEN_WONDERS }}
- uses: Ilshidur/action-discord@0.3.0
+ uses: Ilshidur/action-discord@0.3.2
with:
args: '[Issue #{{ EVENT_PAYLOAD.issue.number }}](<{{ EVENT_PAYLOAD.issue.html_url }}>) closed: {{ EVENT_PAYLOAD.issue.title }}'
bgstack15