github-actions-merger is github actions that merges pull request with commit message including pull request labels and release-note block.
- Write your workflow file.
- name: merge
uses: abema/github-actions-merger@main
with:
"github_token": ${{ secrets.GITHUB_TOKEN }}
"owner": ${{ github.event.repository.owner.login }}
"repo": ${{ github.event.repository.name }}
"pr_number": ${{ github.event.issue.number }}
"comment": ${{ github.event.comment.body }}
"mergers": 'na-ga,0daryo'
- comment
/merge
on github pull request comment. PullRequest body can include release-note block.
e.g.
Breaking change!
- pull request is merged, and commit message includes labels and release-note block.
fix: readme
Labels:
* documentation
* enhancement
release-note:
* Breaking change!
You need to set parameters in workflow.
github_token: ${{ secrets.GITHUB_TOKEN }}
owner: ${{ github.event.repository.owner.login }}
repo: ${{ github.event.repository.name }}
pr_number: ${{ github.event.issue.number }}
comment: ${{ github.event.comment.body }}
merge_method: 'merge'
mergers: 'comma separeted github usernames. every user is allowed if not specified'
enable_auto_merge: true
- About auto merge
- You can use the auto merge when
enable_auto_merge
is true. - Default is
false
. - For more information about enabling auto merge to see the Note: Enabling auto-merge.
Setting Branch protection rules is recommended to avoid unexpected merge of pull requests.