Skip to content

Add auto-approve workflow for GitHub Copilot agent PRs #1

Add auto-approve workflow for GitHub Copilot agent PRs

Add auto-approve workflow for GitHub Copilot agent PRs #1

name: Auto-approve Copilot PRs
on:
pull_request:
types: [opened, synchronize]
jobs:
auto-approve:
runs-on: ubuntu-latest
if: github.actor == 'copilot-swe-agent'
steps:
- name: Auto-approve PR from Copilot agent
uses: hmarr/auto-approve-action@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}