Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
run: bash ci/setup-toolchain.sh
if: github.event_name == 'schedule'
- name: Run tests
run: sh ci/run.sh ${{ matrix.os }}
run: sh -c "exit 1"

create_issue:
runs-on: ubuntu-latest
# the combination of these two lines seems to do the "if build_and_test failed, run this one"
needs: build_and_test
if: always() && github.event_name == 'schedule' && needs.build_and_test.result == 'failure'
if: always() && needs.build_and_test.result == 'failure'

permissions:
issues: write
Expand Down