From 2f29f5d34a99029957a97668d970fd36888dc0eb Mon Sep 17 00:00:00 2001 From: William Brawner Date: Wed, 27 Sep 2023 06:43:13 -0600 Subject: [PATCH] Add names for pull request workflow jobs --- .github/workflows/pull-request.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 0a83b42..ae0ed9d 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -6,7 +6,8 @@ permissions: pull-requests: write jobs: - build: + test: + name: Run unit tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -14,12 +15,13 @@ jobs: uses: gradle/gradle-build-action@v2 - name: Run checks with Gradle Wrapper run: ./gradlew check - automerge: - runs-on: ubuntu-latest - if: ${{ github.actor == 'wbrawner' }} - steps: - - name: Enable auto-merge - run: gh pr merge --auto --merge "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file +# automerge: +# name: Enable automerge +# runs-on: ubuntu-latest +# if: ${{ github.actor == 'wbrawner' }} +# steps: +# - name: Enable auto-merge +# run: gh pr merge --auto --merge "$PR_URL" +# env: +# PR_URL: ${{github.event.pull_request.html_url}} +# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file