summaryrefslogtreecommitdiff
path: root/tool/redmine-backporter.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-02 06:39:06 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-02 06:39:06 +0000
commit60a5a85da2c5decddb848a14f0d03c5029847eee (patch)
tree0329644d358bd92ad746902ad65348088f0eb3ab /tool/redmine-backporter.rb
parented762c0be119edfca2cf63edc18af90639cd55e1 (diff)
* tool/redmine-backporter.rb: support new status 'WONTFIX'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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 e0e0678af4..5d4b235e1a 100755
--- a/tool/redmine-backporter.rb
+++ b/tool/redmine-backporter.rb
@@ -336,7 +336,7 @@ eom
h = data["issue"]["custom_fields"].find{|x|x["id"]==5}
if h and val = h["value"]
case val[/(?:\A|, )#{Regexp.quote TARGET_VERSION}: ([^,]+)/, 1]
- when 'REQUIRED', 'UNKNOWN', 'DONTNEED', 'REJECTED'
+ when 'REQUIRED', 'UNKNOWN', 'DONTNEED', 'WONTFIX'
val[*$~.offset(1)] = 'DONE'
when 'DONE' # , /\A\d+\z/
puts 'already backport is done'