Skip to content

Commit

Permalink
Add smarter check for alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
carlpartridge committed Feb 11, 2025
1 parent 3d3b9e9 commit 04a1308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
docker rmi $(docker images --filter reference="${{ secrets.ACCOUNT_ID }}${DOCKER_ECR_SUFFIX}/*:${SLIM_VERSION}" --format "{{.Repository}}:{{.Tag}}")
fi
# - name: Success Alert
# if: ${{ success() }}
# if: ${{ success() && needs.ci_checks.result == 'success' && needs.build_and_package.result == 'success' }}
# uses: slackapi/slack-github-action@v2.0.0
# with:
# method: chat.postMessage
Expand All @@ -82,7 +82,7 @@ jobs:
# mrkdown_in:
# - text
# - name: Failure Alert
# if: ${{ failure() }}
# if: ${{ failure() || needs.ci_checks.result != 'success' || needs.build_and_package.result != 'success' }}
# uses: slackapi/slack-github-action@v2.0.0
# with:
# method: chat.postMessage
Expand Down

0 comments on commit 04a1308

Please # to comment.