Skip to content

Commit

Permalink
Add branch name to title
Browse files Browse the repository at this point in the history
Ticket: #70554
(cherry picked from commit 830dd59)
  • Loading branch information
erincodepirate committed Feb 15, 2019
1 parent b612be8 commit e9f5163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/create_pr.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function main() {
}
var po_branch = "PO-GENERATION-" + date + "-" + curr_branch
await sh("git checkout -b " + po_branch);
let title = "PO File automated PR " + date;
let title = "PO File automated PR " + date + " " + curr_branch;
await sh("git add .")
await sh("git commit -m \'" + title + "\'");
await sh("git push --set-upstream origin " + po_branch);
Expand Down

0 comments on commit e9f5163

Please sign in to comment.