yykamei/Merge Branches Managed on Issue

This actions is responsible for merging listed branches on the specified GitHub issue.

View on GitHub

Trust Signals

Scorecard Score
not yet scored
Maintenance Recency
Stale
License
None
namedescriptionrequireddefault
issue-numberThe GitHub issue number in which the branches are listedyes
pathRelative path under $GITHUB_WORKSPACE to place the repositoryno
shellThe shell command to invoke a specified source code. This is typically used for `before-merge` option. The default is `bash -eo pipefail` on Linux. Currently, the Windows platform is not supported. Note this value will be just splitted by whitespacesno
before-mergeScript that will be run before merging through the `shell` option. This will be invoked after checking out to each target and the base branch, so you can modify commits for each branch. This is useful to avoid possible merge conflictsno
after-mergeScript that will be run after merging through the `shell` option. This will be invoked after checking out to each target and the base branch, so you can modify commits for each branchno
inputs-param-base-branchThe name for a base branch in the workflow_dispatch action. The default is "base-branch"no
inputs-param-forceThe name for force option in the workflow_dispatch action. The default is "force"no
modified-branch-suffixThe suffix for the modified branch. If you don't set `before-merge` or `after-merge`, the modified branch and the original branch will be the same. The default is ".modified"no
comment-prefixThe comment prefix to trigger some actions. The default is "/mbmi".no
tokenThe GitHub token used to create an authenticated clientno${{ github.token }}
namedescription
diffThe output of git-diff(1) between the default branch and the head of the merged branch.
diffstatThe output of git-diff(1) with `--stat` between the default branch and the head of the merged branch.