Skip to content

Commit

Permalink
fix: Remove [RFC] from PR subject in vim-patch.sh (#14917)
Browse files Browse the repository at this point in the history
As of PR #10383, CONTRIBUTING.md says '[RFC] is assumed by default'. As
of PR #11656, CONTRIBUTING.md says '**do not** put "RFC" in the PR
title'.
  • Loading branch information
dstein64 committed Jun 29, 2021
1 parent 3552916 commit 99a4152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/vim-patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ submit_pr() {
pr_title="${pr_title// /,}" # Replace spaces with commas.

local pr_message
pr_message="$(printf '[RFC] vim-patch:%s\n\n%s\n' "${pr_title#,}" "${pr_body}")"
pr_message="$(printf 'vim-patch:%s\n\n%s\n' "${pr_title#,}" "${pr_body}")"

if [[ $push_first -ne 0 ]]; then
echo "Pushing to 'origin/${checked_out_branch}'."
Expand Down

0 comments on commit 99a4152

Please sign in to comment.