Have bot force push his branch so he can run multiple times a day

This commit is contained in:
Wesley Wigham
2018-05-16 12:44:03 -07:00
parent f0997c1e50
commit e509ee59df

View File

@@ -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();