diff --git a/.github/actions/restore-snapshot-database-from-azure-storage/action.yml b/.github/actions/restore-snapshot-database-from-azure-storage/action.yml index ec58bb96..82668676 100644 --- a/.github/actions/restore-snapshot-database-from-azure-storage/action.yml +++ b/.github/actions/restore-snapshot-database-from-azure-storage/action.yml @@ -137,7 +137,7 @@ runs: env: SLACK_USERNAME: CI Deployment SLACK_TITLE: Snapshot Database restore succeeded - SLACK_MESSAGE: ${{ inputs.app-name }} - snapshot restore job succeeded + SLACK_MESSAGE: ${{ inputs.app-name }} - snapshot restore job from ${{ inputs.storage-account }} / database-backup / ${{ inputs.backup-file }} succeeded! SLACK_WEBHOOK: ${{ inputs.slack-webhook }} SLACK_COLOR: success SLACK_FOOTER: Sent from restore-snapshot-database-from-azure-storage action @@ -148,7 +148,7 @@ runs: env: SLACK_USERNAME: CI Deployment SLACK_TITLE: Snapshot Database restore failure - SLACK_MESSAGE: ${{ inputs.app-name }} snapshot restore job failed + SLACK_MESSAGE: ${{ inputs.app-name }} snapshot restore job from ${{ inputs.storage-account }} / database-backup / ${{ inputs.backup-file }} failed! SLACK_WEBHOOK: ${{ inputs.slack-webhook }} SLACK_COLOR: failure SLACK_FOOTER: Sent from restore-snapshot-database-from-azure-storage action diff --git a/.github/workflows/backup-db.yml b/.github/workflows/backup-db.yml index bf2da491..d5b899e6 100644 --- a/.github/workflows/backup-db.yml +++ b/.github/workflows/backup-db.yml @@ -123,7 +123,7 @@ jobs: uses: rtCamp/action-slack-notify@v2 env: SLACK_USERNAME: CI Deployment - SLACK_TITLE: ${{ env.DEPLOY_ENV }} database dump stored in Azure Storage (${{ env.STORAGE_ACCOUNT_NAME }}) - Success + SLACK_TITLE: ${{ env.DEPLOY_ENV }} database dump stored in Azure Storage (${{ env.STORAGE_ACCOUNT_NAME }} / database-backup / ${{ env.BACKUP_FILE }}.sql) - Success SLACK_MESSAGE: ${{ env.APP_NAME }} - ${{ env.DEPLOY_ENV }} database backup job succeeded SLACK_WEBHOOK: ${{ steps.key-vault-secrets.outputs.SLACK_WEBHOOK }} SLACK_COLOR: success