mirror of https://github.com/ecmwf/eccodes.git
Update ci.yml to fix notification
The notify step was skipped on failing jobs because the `always()` was not handled properly. Instead of `always() && ${{ ... }}` we have to pull in the always `${{ always() && .. }}`
This commit is contained in:
parent
9cd97a7d73
commit
fda9677fd9
|
@ -82,7 +82,7 @@ jobs:
|
|||
- private-downstream-ci
|
||||
- downstream-ci-hpc
|
||||
- private-downstream-ci-hpc
|
||||
if: always() && ${{ !github.event.pull_request.head.repo.fork && github.event.action != 'labeled' || github.event.label.name == 'approved-for-ci' }}
|
||||
if: ${{ always() && !github.event.pull_request.head.repo.fork && github.event.action != 'labeled' || github.event.label.name == 'approved-for-ci' }}
|
||||
steps:
|
||||
- name: Trigger Teams notification
|
||||
uses: ecmwf-actions/notify-teams@v1
|
||||
|
|
Loading…
Reference in New Issue