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 4c7fbf8 commit 352180bCopy full SHA for 352180b
src/tools/miri/.github/workflows/ci.yml
@@ -203,10 +203,10 @@ jobs:
203
./miri fmt --check || (./miri fmt && git commit -am "fmt")
204
- name: Push changes to a branch
205
run: |
206
- git switch -c "rustup$(date -u +%Y-%m-%d)"
207
- git push -u origin
+ BRANCH="rustup$(date -u +%Y-%m-%d)"
+ git switch -c $BRANCH
208
+ git push -u origin $BRANCH
209
- name: Create Pull Request
210
run: gh pr create -B master --title 'Automatic sync from rustc' --body ''
211
env:
212
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
0 commit comments