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.
2 parents 0bf13a4 + 2c5e076 commit f037471Copy full SHA for f037471
src/tools/miri/.github/workflows/ci.yml
@@ -11,7 +11,7 @@ on:
11
- 'master'
12
schedule:
13
- cron: '6 6 * * *' # At 6:06 UTC every day.
14
- - cron: '12 * * * *' # Also each hour, for testing
+ - cron: '22 * * * *' # Also each hour, for testing
15
16
env:
17
CARGO_UNSTABLE_SPARSE_REGISTRY: 'true'
@@ -203,7 +203,9 @@ jobs:
203
./miri toolchain
204
./miri fmt --check || (./miri fmt && git commit -am "fmt")
205
- name: Push changes to a branch
206
- run: git push -u origin HEAD:"rustup$(date -u +%Y-%m-%d)"
+ run: |
207
+ git switch -c "rustup$(date -u +%Y-%m-%d)"
208
+ git push -u origin
209
- name: Create Pull Request
210
run: gh pr create -B master --title 'Automatic sync from rustc' --body ''
211
0 commit comments