actions-marketplace-validations/CM Backport PR
Backport from a branch to another using a pull request.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
- Runtime
- Deprecated runtime
Inputs
| name | description | required | default |
|---|---|---|---|
| token | Personal access token (PAT) if you dont want to use the default value for this field. | no | ${{ github.token }} |
| pr-from-branch | The name of the branch where your changes are implemented. This should be an existing branch on the current repository. | yes | — |
| pr-to-branch | The name of the branch you want the changes pulled into. This should be an existing branch on the current repository. | yes | — |
| pr-title | The title of the new pull request. | no | "" |
| pr-body | The contents of the pull request. | no | "" |
| pr-fail-if-exists | If there is already a PR that matches the configured branches, with this option you can control whether you want the action to throw an error. | no | true |
| pr-update-if-exists | If there is already a PR that matches the configured branches, with this option you can update that PR with the new content. | no | false |
| maintainer-can-modify | Indicates whether maintainers can modify the pull request. | no | true |
| draft | Indicates whether the pull request is a draft. | no | false |
| merge-pr-after-created | Indicates whether the merge should be performed once the PR has been created. | no | false |
| merge-commit-title | Title for the automatic commit message. | no | "" |
| merge-commit-body | Extra detail to append to automatic commit message. | no | "" |
| merge-method | Merge method to use. Possible values are merge, squash or rebase. | no | merge |
Outputs
| name | description |
|---|---|
| pr-number | Pull request number. |
| pr-url | Pull request URL. |
| pr-sha | Commit SHA if merge-pr-after-created is true |