micro-proto/.github/workflows/autoapprove.yml

24 lines
521 B
YAML
Raw Normal View History

name: "autoapprove"
on:
pull_request_target:
types: [assigned, opened, synchronize, reopened]
permissions:
pull-requests: write
contents: write
jobs:
autoapprove:
runs-on: ubuntu-latest
steps:
- name: approve
2023-04-28 13:33:38 +03:00
<<<<<<< HEAD
uses: hmarr/auto-approve-action@v3
2023-04-28 13:33:38 +03:00
=======
uses: hmarr/auto-approve-action@v2
2023-04-28 13:33:38 +03:00
>>>>>>> master
if: github.actor == 'vtolstov' || github.actor == 'dependabot[bot]'
id: approve
with:
github-token: ${{ secrets.GITHUB_TOKEN }}