We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e89344d commit d7aafecCopy full SHA for d7aafec
.github/workflows/automerge.yml
@@ -11,7 +11,7 @@ jobs:
11
name: Get changes
12
runs-on: ubuntu-latest
13
timeout-minutes: 30
14
- if: github.actor == 'dependabot[bot]'
+ if: (github.actor == 'dependabot[bot]') || (github.actor == 'seambot')
15
permissions:
16
checks: read
17
outputs:
@@ -40,6 +40,7 @@ jobs:
40
if: needs.changes.outputs.has_changes == 'true'
41
steps:
42
- name: Approve pull request
43
+ if: github.actor == 'dependabot[bot]'
44
run: gh pr review --approve "$PR_URL"
45
env:
46
PR_URL: ${{ github.event.pull_request.html_url }}
0 commit comments