dxheroes/Release Publish Notify Please
Release your SDK to multiple package managers fully automatically, including notifications.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stalelast commit Nov 15, 2023
- License
- None
Pinned Snippet
uses: dxheroes/gh-action-auto-release@f0aa1b7f5264b7bbeed1e4d04bb11520d660ed97 # v1.0.8tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| package-name | Name of the package to release | yes | — |
| release-type | Type of package to release | yes | node |
| package-path | Path to the package to release | no | . |
| node-version | The version of node to use for publishing to npmjs.com | no | latest |
| token | GitHub token for creating and grooming release PRs, defaults to using secrets.GITHUB_TOKEN | — | ${{ github.token }} |
| fork | should the PR be proposed from a fork, Default to false | — | false |
| clean | Should stale release PRs be closed post release? Defaults to true | — | true |
| bump-minor-pre-major | should breaking changes before 1.0.0 produce minor bumps | — | false |
| bump-patch-for-minor-pre-major | should feat changes before 1.0.0 produce patch bumps instead of minor bumps | — | false |
| path | create a release from a path other than the repository's root | — | "" |
| changelog-path | specify a CHANGELOG path other than the root CHANGELOG.md | — | "" |
| changelog-host | The proto://host where commits live. | — | ${{ github.server_url }} |
| command | release-please command to run, either "github-release", or "release-pr" (defaults to running both) | — | "" |
| version-file | provide a path to a version file to increment (used by ruby releaser) | — | "" |
| extra-files | extra files to bump using the generic updater | — | "" |
| default-branch | branch to open pull release PR against (detected by default) | — | "" |
| changelog-types | changlelog commit types | — | "" |
| config-file | where can the config file be found in the project? | — | "" |
| manifest-file | where can the manifest file be found in the project? | — | "" |
| signoff | Add [`Signed-off-by`](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff) line at the end of the commit log message using the user and email provided. (format "Name \<email@example.com\>") | — | "" |
| github-api-url | configure github API URL. Default `https://api.github.com` | — | ${{ github.api_url }} |
| github-graphql-url | configure github GraphQL URL. Default `https://api.github.com` | — | ${{ github.graphql_url }} |
| repo-url | configure github repository URL. Default `process.env.GITHUB_REPOSITORY` | — | "" |
| monorepo-tags | add prefix to tags and branches, allowing multiple libraries to be released from the same repository | — | false |
| pull-request-header | set release PR header, defaults to using ":robot: I have created a release *beep* *boop*" | — | — |
| draft | mark release as a draft | — | — |
| draft-pull-request | mark pull request as a draft | — | — |
| changelog-notes-type | Strategy for building the changelog contents(see https://github.com/googleapis/release-please/blob/main/docs/customizing.md#changelog-types). Default `default`. Called `changelog-type` in release-please documentation. | — | — |
| versioning-strategy | Override method of determining SemVer version bumps based on commits (drr https://github.com/googleapis/release-please/blob/main/docs/customizing.md#versioning-strategies). Default `default` | — | — |
| release-as | manually set version to this value, ignoring conventional commits. Absence defaults to conventional commits derived next version. Once the release PR is merged you should either remove this or update it to a higher version. Otherwise subsequent `manifest-pr` runs will continue to use this version even though it was already set in the last release. | — | — |
| skip-github-release | Skip creating GitHub Releases. Default `false` | — | — |
| prerelease | If set, create releases that are pre-major or pre-release version marked as pre-release on Github. Defaults `false` | — | — |
| component | name of the component used for branch naming and release tagging, defaults to a normalized version based on the package name | — | — |
| include-v-in-tag | include "v" in tag versions. Default `true` | — | — |
| tag-separator | configures separator character used in release tag | — | — |
| snapshot-labels | sets java snapshot pull request labels other than `autorelease: snapshot` | — | — |
| bootstrap-sha | if this is the first time running `manifest-pr` on a repo this key will limit how far back (exclusive) to pull commits for conventional commit parsing (see the manifest releaser docs https://github.com/googleapis/release-please/blob/main/docs/manifest-releaser.md) | — | — |
| last-release-sha | overrides the commit sha release-please will use from which to gather commits for the current release (see the manifest releaser docs https://github.com/googleapis/release-please/blob/main/docs/manifest-releaser.md) | — | — |
| always-link-local | when using the `node-workspace` plugin, setting to false will only bump your local dependencies within the SemVer range (see the manifest releaser docs)[https://github.com/googleapis/release-please/blob/main/docs/manifest-releaser.md) . Default `true`. | — | — |
| separate-pull-requests | create separate pull requests for each package instead of a single manifest release pull request (see the manifest releaser docs https://github.com/googleapis/release-please/blob/main/docs/manifest-releaser.md). Default `false`. | — | — |
| plugins | see https://github.com/googleapis/release-please/blob/main/docs/manifest-releaser.md#plugins | — | — |
| labels | list of labels to apply to the release pull requests, defaults to `autorelease: pending` | — | — |
| release-labels | set a pull request label other than `autorelease: tagged` | — | — |
| skip-labeling | if set, labels will not be applied to pull requests. Default `false`. | — | — |
| sequential-calls | issue GitHub API requests sequentially rather than concurrently (see the manifest releaser docs https://github.com/googleapis/release-please/blob/main/docs/manifest-releaser.md). Default `false` | — | — |
| group-pull-request-title-pattern | sets the manifest pull request title for when releasing multiple packages grouped together in the one pull request | — | — |
| release-search-depth | when searching for the latest release SHAs, only consider the last N releases | — | — |
| commit-search-depth | when fetching the list of commits to consider, only consider the last N commits | — | — |
| proxy-server | set proxy sever when you run this action behind a proxy. format is host:port e.g. proxy-host.com:8080 | — | — |
Outputs
| name | description |
|---|---|
| package-manager-link | Link to the package manager where the package was published |
| major | Major version of the package |
| minor | Minor version of the package |
| patch | Patch version of the package |
| release_created | Whether a release was created |
| sha | SHA of the release |
| pr | PR number of the release |
| prs | PR numbers of the release |
| upload_url | Upload URL of the release |
| html_url | HTML URL of the release |
| tag_name | Tag name of the release |