Update Contributors.md 2411119 #191
Workflow file for this run
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: Auto Merge PR | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
jobs: | |
auto-merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Auto merge if tests pass and approvals are met | |
id: merge | |
uses: pascalgn/[email protected] | |
with: | |
github-token: ${{ secrets.APPROVER }} | |
merge-method: merge # Options are merge, squash, rebase | |
commit-message: merge # Options are merge, title, pull-request-title | |
env: | |
GITHUB_TOKEN: ${{ secrets.APPROVER }} | |
- name: Comment on PR | |
if: steps.merge.outputs.pull-request-merged == 'true' | |
run: | | |
curl -s -X POST -H "Authorization: token ${{ secrets.APPROVER }}" -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments -d '{"body": "This PR has been automatically merged."}' |