We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02cba1d commit 37a5167Copy full SHA for 37a5167
.github/workflows/ci.yml
@@ -41,13 +41,13 @@ jobs:
41
run: bash ci/setup-toolchain.sh
42
if: github.event_name == 'schedule'
43
- name: Run tests
44
- run: sh ci/run.sh ${{ matrix.os }}
+ run: sh -c "exit 1"
45
46
create_issue:
47
runs-on: ubuntu-latest
48
# the combination of these two lines seems to do the "if build_and_test failed, run this one"
49
needs: build_and_test
50
- if: always() && github.event_name == 'schedule' && needs.build_and_test.result == 'failure'
+ if: always() && needs.build_and_test.result == 'failure'
51
52
permissions:
53
issues: write
0 commit comments