Skip to content

Commit

Permalink
notify
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopocarlini committed Jul 3, 2024
1 parent 2e2e0a7 commit 37b5a92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ concurrency:

jobs:
integration_test:
name: Test ${{(github.event.inputs == null && 'dev') || inputs.environment }}
name: Test ${{(inputs.environment == null && 'dev') || inputs.environment }}
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
needs: [ integration_test ]
runs-on: ubuntu-latest
name: Notify
if: ${{ always() && ( inputs == null || inputs.notify == true ) }}
if: ${{ always() && (github.event_name == 'schedule' || inputs.notify == true ) }}
steps:
- name: Report Status
uses: ravsamhq/notify-slack-action@be814b201e233b2dc673608aa46e5447c8ab13f2 # v2
Expand Down

0 comments on commit 37b5a92

Please sign in to comment.