12 lines
283 B
YAML
12 lines
283 B
YAML
name: Auto approve
|
|
on: pull_request
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: hmarr/auto-approve-action@v2.0.0
|
|
if: github.actor == 'github-actions' || github.actor == 'github-actions[bot]'
|
|
with:
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|