summaryrefslogtreecommitdiff
path: root/tool/redmine-backporter.rb
diff options
context:
space:
mode:
authorNARUSE, Yui <naruse@airemix.jp>2023-01-18 17:57:03 +0900
committerNARUSE, Yui <naruse@airemix.jp>2023-01-31 10:53:57 +0900
commitb0b61623ad890e723726b3213354634fcc5cdb71 (patch)
treeec077e5888962f4a9a902431473701e8bf148384 /tool/redmine-backporter.rb
parentd3822c9a8aa91151bd040d5635b723ff80bc1886 (diff)
downloadruby-b0b61623ad890e723726b3213354634fcc5cdb71.tar.gz
Add quotes to backport field
Diffstat (limited to 'tool/redmine-backporter.rb')
-rwxr-xr-xtool/redmine-backporter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/redmine-backporter.rb b/tool/redmine-backporter.rb
index df54c7eb26..a43d0776ab 100755
--- a/tool/redmine-backporter.rb
+++ b/tool/redmine-backporter.rb
@@ -45,7 +45,7 @@ REDMINE_BASE = 'https://bugs.ruby-lang.org'
@query = {
'f[]' => BACKPORT_CF_KEY,
"op[#{BACKPORT_CF_KEY}]" => '~',
- "v[#{BACKPORT_CF_KEY}][]" => "#{TARGET_VERSION}: REQUIRED",
+ "v[#{BACKPORT_CF_KEY}][]" => "\"#{TARGET_VERSION}: REQUIRED\"",
'limit' => 40,
'status_id' => STATUS_CLOSE,
'sort' => 'updated_on'