Skip to content

Commit 69642ba

Browse files
committed
Make rubocop happy
1 parent cfd91d0 commit 69642ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/fastlane/plugin/wpmreleasetoolkit/helper/github_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def self.create_milestone(repository, newmilestone_number, newmilestone_duedate,
105105
#
106106
# This is a bug in the GitHub API, not in our date computation logic.
107107
# To solve this, we trick it by forcing the time component of the ISO date we send to be `12:00:00Z`.
108-
options[:due_on] = newmilestone_duedate.strftime("%Y-%m-%dT12:00:00Z")
108+
options[:due_on] = newmilestone_duedate.strftime('%Y-%m-%dT12:00:00Z')
109109
options[:description] = comment
110110
github_client().create_milestone(repository, newmilestone_number, options)
111111
end

0 commit comments

Comments
 (0)