Skip to content

Commit

Permalink
use always() too (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp authored Jul 19, 2023
1 parent e86839d commit ebd381d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -326,10 +326,10 @@ jobs:

- name: Checkout our source
uses: actions/checkout@v3
if: github.event_name == 'schedule' && steps.alls-green.outputs.result == 'failure'
if: always() && github.event_name == 'schedule' && steps.alls-green.outputs.result == 'failure'

- name: Report failures
if: github.event_name == 'schedule' && steps.alls-green.outputs.result == 'failure'
if: always() && github.event_name == 'schedule' && steps.alls-green.outputs.result == 'failure'
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.CONDA_LIBMAMBA_SOLVER_ISSUES }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upstream_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -521,10 +521,10 @@ jobs:
# CONDA-LIBMAMBA-SOLVER CHANGE
- name: Checkout our source
uses: actions/checkout@v3
if: github.event_name == 'schedule' && steps.alls-green.outputs.result == 'failure'
if: always() && github.event_name == 'schedule' && steps.alls-green.outputs.result == 'failure'

- name: Report failures
if: github.event_name == 'schedule' && steps.alls-green.outputs.result == 'failure'
if: always() && github.event_name == 'schedule' && steps.alls-green.outputs.result == 'failure'
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.CONDA_LIBMAMBA_SOLVER_ISSUES }}
Expand Down

0 comments on commit ebd381d

Please sign in to comment.