Merge me! #19
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
name: Merge me! | |
on: | |
check_suite: | |
types: | |
- completed | |
jobs: | |
merge-me: | |
name: Merge me! | |
runs-on: ubuntu-latest | |
steps: | |
- name: Merge me! | |
uses: ridedott/merge-me-action@v2 | |
with: | |
# Depending on branch protection rules, a manually populated | |
# `GITHUB_TOKEN_WORKAROUND` environment variable with permissions to | |
# push to a protected branch must be used. This variable can have an | |
# arbitrary name, as an example, this repository uses | |
# `GITHUB_TOKEN_DOTTBOTT`. | |
# | |
# When using a custom token, it is recommended to leave the following | |
# comment for other developers to be aware of the reasoning behind it: | |
# | |
# This must be used as GitHub Actions token does not support | |
# pushing to protected branches. | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MERGE_METHOD: MERGE |