lib/geet/commandline/configuration.rb in geet-0.2.1 vs lib/geet/commandline/configuration.rb in geet-0.3.0
- old
+ new
@@ -21,11 +21,11 @@
#
# rubocop:disable Style/MutableConstant
ISSUE_CREATE_OPTIONS = [
['-n', '--no-open-issue', "Don't open the issue link in the browser after creation"],
['-l', '--label-patterns "bug,help wanted"', 'Label patterns'],
- ['-m', '--milestone number_or_pattern', 'Milestone number or description pattern'],
+ ['-m', '--milestone 1.5.0', 'Milestone title pattern'],
['-a', '--assignee-patterns john,tom,adrian,kevin', 'Assignee login patterns. Defaults to authenticated user'],
['-u', '--upstream', 'Create on the upstream repository'],
long_help: 'The default editor will be opened for editing title and description.'
]
@@ -44,10 +44,10 @@
MILESTONE_LIST_OPTIONS = [].freeze
PR_CREATE_OPTIONS = [
['-n', '--no-open-pr', "Don't open the PR link in the browser after creation"],
['-l', '--label-patterns "legacy,code review"', 'Label patterns'],
- ['-m', '--milestone number_or_pattern', 'Milestone number or description pattern'],
+ ['-m', '--milestone 1.5.0', 'Milestone title pattern'],
['-r', '--reviewer-patterns john,tom,adrian,kevin', 'Reviewer login patterns'],
['-u', '--upstream', 'Create on the upstream repository'],
long_help: 'The default editor will be opened for editing title and description; if the PR adds one commit only, '\
'the content will be prepopulated with the commit description.'
]