micro-client-http/.github/workflows/autoreview.yml
Vasiliy Tolstov 4f749c5bb1 change workflow
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2022-03-05 18:20:30 +03:00

28 lines
634 B
YAML

name: "autoreview"
on:
pull_request_target:
types: [assigned, opened, synchronize, reopened]
permissions:
pull-requests: write
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: |
github.actor == 'vtolstov' ||
github.actor == 'dependabot[bot]'
steps:
- name: metadata
id: metadata
uses: dependabot/fetch-metadata@v1.3.0
with:
github-token: "${{ secrets.TOKEN }}"
- name: approve
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.TOKEN}}