From 36621730c832ef399728ab4563ade2ce471c59cc Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Wed, 23 Jul 2025 12:10:28 -0700 Subject: [PATCH] Merge PRs opened by seambot --- .github/workflows/automerge.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml index 5d89a255..db7f5dcd 100644 --- a/.github/workflows/automerge.yml +++ b/.github/workflows/automerge.yml @@ -11,7 +11,7 @@ jobs: name: Get changes runs-on: ubuntu-latest timeout-minutes: 30 - if: github.actor == 'dependabot[bot]' + if: (github.actor == 'dependabot[bot]') || (github.actor == 'seambot') permissions: checks: read outputs: @@ -39,6 +39,7 @@ jobs: if: needs.changes.outputs.has_changes == 'true' steps: - name: Approve pull request + if: github.actor == 'dependabot[bot]' run: gh pr review --approve "$PR_URL" env: PR_URL: ${{ github.event.pull_request.html_url }}