We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e80e7c commit e5aaa49Copy full SHA for e5aaa49
1 file changed
.github/workflows/update-nightly.yaml
@@ -25,10 +25,10 @@ jobs:
25
git config user.name "${{ github.actor }}"
26
git config user.email "${{ github.actor_id}}+${{ github.actor }}@users.noreply.github.com"
27
28
- - name: merge main
+ - name: rebase main
29
run: |
30
git fetch origin
31
- git merge origin/main --strategy-option ours --no-commit --allow-unrelated-histories
+ git rebase origin/main -Xtheirs
32
33
- name: update lean-toolchain
34
id: toolchain-tag
@@ -41,4 +41,4 @@ jobs:
41
- name: commit and push
42
43
git commit -m "chore: update toolchain ${{ steps.toolchain-tag.outputs.lean_tag }}"
44
- git push origin nightly
+ git push --force origin nightly
0 commit comments