Skip to content

Commit

Permalink
Fix for delete featurenet in nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin-Radecki committed Aug 17, 2023
1 parent 80f114e commit 4005e55
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/actions/delete-featurenet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ runs:
shell: bash
env:
# yamllint disable-line rule:line-length
APP_NAME: ${{ inputs.featurenet-name != '' && inputs.featurenet-name || format('{0}{1}{2}', 'fe-', steps.get-ref-properties.outputs.branch-name-for-argo, github.run_id) }}
APP_NAME: ${{ inputs.featurenet-name != '' && inputs.featurenet-name || format('{0}{1}-{2}', 'fe-', steps.get-ref-properties.outputs.branch-name-for-argo, github.run_id) }}
run: |
name_local=${{ env.APP_NAME }}
echo "name=$name_local" >> $GITHUB_OUTPUT
Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/nightly-logic-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
secrets: inherit

runs-e2e-test-on-fe:
needs: [push-featurnet-node-image-to-ecr, build-e2e-client-image]
needs: [push-featurnet-node-image-to-ecr, build-e2e-client-image, store-test-node-and-runtime]
name: Run e2e test on FE
runs-on: [self-hosted, Linux, X64, large]
steps:
Expand Down Expand Up @@ -118,18 +118,18 @@ jobs:
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 }}
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 4005e55

Please sign in to comment.