Skip to content

Commit 94e38df

Browse files
committed
fix alphabetical order
1 parent e78b1c7 commit 94e38df

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

components/git/release.js

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,17 @@ const PROMOTE = 'promote';
1414
const RELEASERS = 'releasers';
1515

1616
const releaseOptions = {
17-
run: {
18-
describe: 'Run steps that involve touching more than the local clone, ' +
19-
'including `git push` commands. Might not work if a passphrase ' +
20-
'required to push to the remote clone.',
21-
type: 'boolean'
17+
filterLabel: {
18+
describe: 'Labels separated by "," to filter security PRs',
19+
type: 'string'
20+
},
21+
'gpg-sign': {
22+
describe: 'GPG-sign commits, will be passed to the git process',
23+
alias: 'S'
24+
},
25+
newVersion: {
26+
describe: 'Version number of the release to be prepared',
27+
type: 'string'
2228
},
2329
prepare: {
2430
describe: 'Prepare a new release of Node.js',
@@ -32,22 +38,16 @@ const releaseOptions = {
3238
describe: 'Default relase date when --prepare is used. It must be YYYY-MM-DD',
3339
type: 'string'
3440
},
41+
run: {
42+
describe: 'Run steps that involve touching more than the local clone, ' +
43+
'including `git push` commands. Might not work if a passphrase ' +
44+
'required to push to the remote clone.',
45+
type: 'boolean'
46+
},
3547
security: {
3648
describe: 'Demarcate the new security release as a security release',
3749
type: 'boolean'
3850
},
39-
newVersion: {
40-
describe: 'Version number of the release to be prepared',
41-
type: 'string'
42-
},
43-
filterLabel: {
44-
describe: 'Labels separated by "," to filter security PRs',
45-
type: 'string'
46-
},
47-
'gpg-sign': {
48-
describe: 'GPG-sign commits, will be passed to the git process',
49-
alias: 'S'
50-
},
5151
skipBranchDiff: {
5252
describe: 'Skips the initial branch-diff check when preparing releases',
5353
type: 'boolean'

0 commit comments

Comments
 (0)