diff --git a/.github/workflows/autoupdate.yml b/.github/workflows/autoupdate.yml index d381abd..8e93d25 100644 --- a/.github/workflows/autoupdate.yml +++ b/.github/workflows/autoupdate.yml @@ -123,7 +123,9 @@ jobs: --base main \ --head "$AUTOUPDATE_BRANCH" \ --title "chore(deps): autoupdate v${{ steps.pkg.outputs.version }}" \ - --body "$BODY") + --body "$BODY" \ + --assignee siarheidudko \ + --reviewer siarheidudko) echo "pr_url=$PR_URL" >> "$GITHUB_OUTPUT" - name: Open draft PR (autoupdater failed) id: pr_failure @@ -154,7 +156,9 @@ jobs: --head "$AUTOUPDATE_BRANCH" \ --title "chore(deps): autoupdate (needs claude fix)" \ --body "$BODY" \ - --draft) + --draft \ + --assignee siarheidudko \ + --reviewer siarheidudko) echo "pr_url=$PR_URL" >> "$GITHUB_OUTPUT" - name: Trigger PR checks (GITHUB_TOKEN can't auto-trigger pull_request) if: steps.pr_success.outputs.pr_url != '' || steps.pr_failure.outputs.pr_url != '' diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 3ce8133..d8a27e8 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -2,9 +2,11 @@ name: PR checks on: pull_request: branches: [main] + push: + branches-ignore: [main] workflow_dispatch: concurrency: - group: "${{ github.workflow }} @ ${{ github.ref }}" + group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.ref || github.ref }}" cancel-in-progress: true permissions: contents: read