From 03255bc33317732acc37bd6b45d482e108263400 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Wed, 19 Jul 2023 14:56:04 -0400 Subject: [PATCH] pull-request.sh: Various Updates * We are on Linux v6.* now * Add a subject line template * Fix the $new tag variable Signed-off-by: Anna Schumaker --- pull-request.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pull-request.sh b/pull-request.sh index eb2e27b..fa49eff 100755 --- a/pull-request.sh +++ b/pull-request.sh @@ -2,10 +2,12 @@ url=git://git.linux-nfs.org/projects/anna/linux-nfs.git -[ -z "$1" ] && tag="v5.*-rc*" || tag="$1" +[ -z "$1" ] && tag="v6.*-rc*" || tag="$1" old=$(git describe --tags --abbrev=0 --match $tag) new=$(git describe) +echo "Subject: [GIT PULL] " +echo echo "Hi Linus," echo -git request-pull $old $url HEAD:$new +git request-pull $old $url $new