Skip to content

Commit

Permalink
feat: print banner in the PR description
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Aug 9, 2023
1 parent abeb3f4 commit c212b61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ func main() {
panic(err)
}

body := "This PR combines the following PRs:\n\n"
command := strings.Join(os.Args, " ")
disclaimer := ":warning: This PR has been created with the [combine-prs](https://github.com/mdelapenya/gh-combine-prs) `gh` extension.\nCommand:" + command + ".\n\n"
body := disclaimer + "It combines the following PRs:\n\n"
relatedIssuesText := "## Related Issues:\n\n"

for _, pr := range confirmedPRs {
Expand Down

0 comments on commit c212b61

Please sign in to comment.