From e509ee59dff11f9b23c9cfe64f7d07fd3a143839 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Wed, 16 May 2018 12:44:03 -0700 Subject: [PATCH] Have bot force push his branch so he can run multiple times a day --- scripts/open-user-pr.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/open-user-pr.ts b/scripts/open-user-pr.ts index 75dfff5b2c8..c2b31951612 100644 --- a/scripts/open-user-pr.ts +++ b/scripts/open-user-pr.ts @@ -27,7 +27,7 @@ runSequence([ ["git", ["add", "."]], // Add all changes ["git", ["commit", "-m", `"Update user baselines"`]], // Commit all changes ["git", ["remote", "add", "fork", remoteUrl]], // Add the remote fork - ["git", ["push", "--set-upstream", "fork", branchName]] // push the branch + ["git", ["push", "--set-upstream", "fork", branchName, "-f"]] // push the branch ]); const gh = new Octokit();