-
Notifications
You must be signed in to change notification settings - Fork 390
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: reimplement custom pull request title (#1122)
- Loading branch information
Showing
6 changed files
with
162 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,44 +4,54 @@ release-please github-release | |
create a GitHub release from a release PR | ||
Options: | ||
--help Show help [boolean] | ||
--version Show version number [boolean] | ||
--debug print verbose errors (use only for local debugging). | ||
[boolean] [default: false] | ||
--trace print extra verbose errors (use only for local debugging). | ||
[boolean] [default: false] | ||
--token GitHub token with repo write permissions | ||
--api-url URL to use when making API requests | ||
--help Show help [boolean] | ||
--version Show version number [boolean] | ||
--debug print verbose errors (use only for local | ||
debugging). [boolean] [default: false] | ||
--trace print extra verbose errors (use only for local | ||
debugging). [boolean] [default: false] | ||
--token GitHub token with repo write permissions | ||
--api-url URL to use when making API requests | ||
[string] [default: "https://api.github.com"] | ||
--graphql-url URL to use when making GraphQL requests | ||
--graphql-url URL to use when making GraphQL requests | ||
[string] [default: "https://api.github.com"] | ||
--default-branch The branch to open release PRs against and tag releases on | ||
--default-branch The branch to open release PRs against and tag | ||
releases on | ||
[deprecated: use --target-branch instead] [string] | ||
--target-branch The branch to open release PRs against and tag releases on | ||
[string] | ||
--repo-url GitHub URL to generate release for [required] | ||
--dry-run Prepare but do not take action [boolean] [default: false] | ||
--monorepo-tags include library name in tags and release branches | ||
--target-branch The branch to open release PRs against and tag | ||
releases on [string] | ||
--repo-url GitHub URL to generate release for [required] | ||
--dry-run Prepare but do not take action | ||
[boolean] [default: false] | ||
--path release from path other than root directory [string] | ||
--component name of component release is being minted for [string] | ||
--package-name name of package release is being minted for [string] | ||
--release-type what type of repo is a release being created for? | ||
--monorepo-tags include library name in tags and release | ||
branches [boolean] [default: false] | ||
--pull-request-title-pattern Title pattern to make release PR [string] | ||
--path release from path other than root directory | ||
[string] | ||
--component name of component release is being minted for | ||
[string] | ||
--package-name name of package release is being minted for | ||
[string] | ||
--release-type what type of repo is a release being created | ||
for? | ||
[choices: "dart", "elixir", "go", "go-yoshi", "helm", "java-backport", | ||
"java-bom", "java-lts", "java-yoshi", "krm-blueprint", "node", "ocaml", "php", | ||
"php-yoshi", "python", "ruby", "ruby-yoshi", "rust", "simple", | ||
"terraform-module"] | ||
--config-file where can the config file be found in the project? | ||
[default: "release-please-config.json"] | ||
--manifest-file where can the manifest file be found in the project? | ||
--config-file where can the config file be found in the | ||
project? [default: "release-please-config.json"] | ||
--manifest-file where can the manifest file be found in the | ||
project? | ||
[default: ".release-please-manifest.json"] | ||
--draft mark release as a draft. no tag is created but tag_name and | ||
target_commitish are associated with the release for future | ||
tag creation upon "un-drafting" the release. | ||
--draft mark release as a draft. no tag is created but | ||
tag_name and target_commitish are associated | ||
with the release for future tag creation upon | ||
"un-drafting" the release. | ||
[boolean] [default: false] | ||
--label comma-separated list of labels to remove to from release PR | ||
[default: "autorelease: pending"] | ||
--release-label set a pull request label other than "autorelease: tagged" | ||
--label comma-separated list of labels to remove to from | ||
release PR [default: "autorelease: pending"] | ||
--release-label set a pull request label other than | ||
"autorelease: tagged" | ||
[string] [default: "autorelease: tagged"] | ||
` | ||
|
||
|
@@ -161,7 +171,6 @@ Options: | |
generated? [boolean] [default: false] | ||
--versioning-strategy strategy used for bumping versions | ||
[choices: "default", "always-bump-patch", "service-pack"] [default: "default"] | ||
--pull-request-title-pattern Title pattern to make release PR [string] | ||
--changelog-path where can the CHANGELOG be found in the | ||
project? [string] [default: "CHANGELOG.md"] | ||
--last-package-version last version # that package was released as | ||
|
@@ -184,6 +193,7 @@ Options: | |
<[email protected]>"). [string] | ||
--monorepo-tags include library name in tags and release | ||
branches [boolean] [default: false] | ||
--pull-request-title-pattern Title pattern to make release PR [string] | ||
--path release from path other than root directory | ||
[string] | ||
--component name of component release is being minted | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters