Enable automerge for PRs from me

This commit is contained in:
William Brawner 2023-09-30 21:45:32 -06:00
parent 9f6444524f
commit 0d9fe441e8

View file

@ -18,6 +18,12 @@ jobs:
java-version: '17'
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Enable auto-merge
if: ${{ github.event_name == 'pull_request' && github.actor == 'wbrawner' }}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
unit_test:
name: Run Unit Tests
runs-on: ubuntu-latest