aboutsummaryrefslogtreecommitdiff
path: root/scripts/vim-patch.sh
diff options
context:
space:
mode:
authorDaniel Steinberg <dstein64@users.noreply.github.com>2021-06-28 20:40:00 -0400
committerGitHub <noreply@github.com>2021-06-28 20:40:00 -0400
commit99a4152a4bf8d5905838baf59882a7dc8ee3367f (patch)
tree7d572562dda285b367e69397803fe206ec93e3da /scripts/vim-patch.sh
parent3552916cb917f8d44c229c4eee815d4d30dd3047 (diff)
downloadrneovim-99a4152a4bf8d5905838baf59882a7dc8ee3367f.tar.gz
rneovim-99a4152a4bf8d5905838baf59882a7dc8ee3367f.tar.bz2
rneovim-99a4152a4bf8d5905838baf59882a7dc8ee3367f.zip
fix: Remove [RFC] from PR subject in vim-patch.sh (#14917)
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'.
Diffstat (limited to 'scripts/vim-patch.sh')
-rwxr-xr-xscripts/vim-patch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh
index 86552c0c8d..d53de42c6c 100755
--- a/scripts/vim-patch.sh
+++ b/scripts/vim-patch.sh
@@ -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}'."