14 lines
300 B
YAML
14 lines
300 B
YAML
name: auto-approve
|
|
on:
|
|
push:
|
|
branches: master
|
|
|
|
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 }}"
|