summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2021-07-27 18:03:33 +0000
committerJoffrey Bion <joffrey.bion@gmail.com>2021-08-12 15:58:36 +0200
commitadfc4129a50cd3815783666436a8664ed94bf7e2 (patch)
tree25a266856d27fde70f2f97d4e8bd9b8d6ee21841 /.github/workflows
parentRename container registry token env var (diff)
downloadseven-wonders-adfc4129a50cd3815783666436a8664ed94bf7e2.tar.gz
seven-wonders-adfc4129a50cd3815783666436a8664ed94bf7e2.tar.bz2
seven-wonders-adfc4129a50cd3815783666436a8664ed94bf7e2.zip
Bump Ilshidur/action-discord from 0.3.0 to 0.3.2
Bumps [Ilshidur/action-discord](https://github.com/Ilshidur/action-discord) from 0.3.0 to 0.3.2. - [Release notes](https://github.com/Ilshidur/action-discord/releases) - [Commits](https://github.com/Ilshidur/action-discord/compare/0.3.0...0.3.2) --- updated-dependencies: - dependency-name: Ilshidur/action-discord dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to '.github/workflows')
-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