-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
github action documentation #505
Changes from 8 commits
08f76e1
5b9c312
593a3e2
c4eabff
56dcdae
d5b22a9
62df012
2a4b076
ee9cac2
761b445
ebbc1f1
51816dd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,12 +101,12 @@ export async function cli() { | |
) | ||
.option("-ocl, --out-changelog <string>", "output file for changelogs") | ||
.option( | ||
"-prc, --pull-request-comment <string>", | ||
"create comment on a pull request." | ||
"-prc, --pull-request-comment [string]", | ||
"create comment on a pull request.", "" | ||
) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to the
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similarly, the square brackets around
|
||
.option( | ||
"-prd, --pull-request-description <string>", | ||
"upsert comment on a pull request description." | ||
"-prd, --pull-request-description [string]", | ||
"upsert comment on a pull request description.", "" | ||
) | ||
.option( | ||
"-prr, --pull-request-reviews", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The option for pull-request-description should not have a default value as it is now optional, indicated by the square brackets. Remove the default empty string to avoid confusion.