Skip to content

Commit

Permalink
Add force flag to gh pr create command in upgrade-deps script
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Sep 5, 2024
1 parent 8d8dadf commit e7d4216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/upgrade-deps.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ await $`git checkout -b ${branch}`
await $`git add .`
await $`git commit -m "upgrading dependencies" -n`
await $`git push -u origin ${branch}`
await $`gh pr create --base main --head ${branch} --title "Upgrading dependencies" --body "This PR upgrades the dependencies"`
await $`gh pr create -f --base main --head ${branch} --title "Upgrading dependencies" --body "This PR upgrades the dependencies"`
await $`git checkout main`

0 comments on commit e7d4216

Please sign in to comment.