Skip to content

Commit

Permalink
only report scheduled tests failures on actual failures [skip ci] (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp authored Jul 19, 2023
1 parent b33a450 commit e86839d
Showing 1 changed file with 2 additions and 2 deletions.
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.failure
if: github.event_name == 'schedule' && steps.alls-green.outputs.result == 'failure'

- name: Report failures
if: github.event_name == 'schedule' && steps.alls-green.outputs.failure
if: 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 e86839d

Please sign in to comment.