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 ebb514c commit 5ff165dCopy full SHA for 5ff165d
.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:
@@ -39,6 +39,7 @@ jobs:
39
if: needs.changes.outputs.has_changes == 'true'
40
steps:
41
- name: Approve pull request
42
+ if: github.actor == 'dependabot[bot]'
43
run: gh pr review --approve "$PR_URL"
44
env:
45
PR_URL: ${{ github.event.pull_request.html_url }}
0 commit comments