Skip to content

Commit

Permalink
[Backport 8.15] Try running auto-approve after other jobs (#2330)
Browse files Browse the repository at this point in the history
(cherry picked from commit 37b8a33)

Co-authored-by: Josh Mock <[email protected]>
  • Loading branch information
github-actions[bot] and JoshMock authored Aug 12, 2024
1 parent f609271 commit 6116909
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Node CI

on:
pull_request: {}
pull_request_target: {}

jobs:
paths-filter:
Expand Down Expand Up @@ -72,3 +72,13 @@ jobs:
- name: License checker
run: |
npm run license-checker
auto-approve:
name: Auto-approve
needs: [test, license]
runs-on: ubuntu-latest
permissions:
pull-requests: write
if: github.actor == 'elasticmachine'
steps:
- uses: hmarr/auto-approve-action@v4

0 comments on commit 6116909

Please sign in to comment.