diff --git a/.github/workflows/pull-request-automation.yaml b/.github/workflows/pull-request-automation.yaml index 0fab6027207e..c47cd30c2b58 100644 --- a/.github/workflows/pull-request-automation.yaml +++ b/.github/workflows/pull-request-automation.yaml @@ -5,14 +5,10 @@ on: types: - opened - reopened - - closed - pull_request_target: - types: - - closed jobs: auto-merge: - name: Auto reviews, merge and close pull requests + name: Auto reviews pull requests from bots runs-on: ubuntu-22.04 timeout-minutes: 5 @@ -38,11 +34,9 @@ jobs: }) if: |- startsWith(github.head_ref, 'ghci/audit/') - && (github.event.pull_request.user.login == 'ghci-test[bot]' - || github.event.pull_request.user.login == 'ghci-int[bot]' - || github.event.pull_request.user.login == 'ghci[bot]') - && (github.event.action == 'opened' - || github.event.action == 'reopened') + && (github.event.pull_request.user.login == 'geo-ghci-test[bot]' + || github.event.pull_request.user.login == 'geo-ghci-int[bot]' + || github.event.pull_request.user.login == 'geo-ghci[bot]') - name: Auto reviews Renovate updates uses: actions/github-script@v7 with: @@ -55,5 +49,3 @@ jobs: }) if: |- github.event.pull_request.user.login == 'renovate[bot]' - && (github.event.action == 'opened' - || github.event.action == 'reopened')