We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30b3b14 commit 6d0d36bCopy full SHA for 6d0d36b
.github/workflows/template.yml
@@ -39,6 +39,11 @@ jobs:
39
run: "git remote add template ${{ env.TEMPLATE_URL }} && git fetch template ${{ env.TEMPLATE_BRANCH }}"
40
- name: Merge template
41
run: "git checkout -b template-update && git merge template/${{ env.TEMPLATE_BRANCH }} -m 'chore: Update from template'"
42
+ - name: Clear any existing branch
43
+ run: "git push origin --delete template-update"
44
+ continue-on-error: true
45
+ env:
46
+ GH_TOKEN: ${{ github.token }}
47
- name: Push branch
48
run: "git push --set-upstream origin template-update"
49
env:
0 commit comments