Skip to content

Commit

Permalink
Fix new worfklow syntax - attempt #3
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin-Radecki committed Aug 17, 2023
1 parent 4dd8ffe commit 601e444
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/nightly-logic-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:
image_not_exist=$(docker manifest inspect $ecr_image &> /dev/null ; echo $?)
if [[ $image_not_exist -eq 1 ]]; then
echo "image-exists=false" >> $GITHUB_OUTPUT
exit 1
fi
echo "image-exists=true" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -146,3 +145,19 @@ jobs:
repo-featurenets-name: ${{ secrets.REPO_OPS_FEATURENETS_NAME }}
argo-host: ${{ secrets.ARGOCD_DEVNET_HOST }}
featurenet-keys-s3bucket-name: ${{ secrets.FEATURENET_KEYS_S3BUCKET_NAME }}

slack-notification:
name: Slack notification
runs-on: ubuntu-20.04
needs: [runs-e2e-test-on-fe]
if: ${{ !cancelled() }}
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Send Slack message
uses: ./.github/actions/slack-notification
with:
notify-on: "always"
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_NIGHTLY_PIPELINE }}

0 comments on commit 601e444

Please sign in to comment.