micro-client-http/.github/workflows/autoreview.yml

28 lines
634 B
YAML
Raw Normal View History

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:
2021-10-27 15:56:06 +03:00
- name: metadata
id: metadata
uses: dependabot/fetch-metadata@v1.3.0
with:
github-token: "${{ secrets.TOKEN }}"
2021-10-27 15:56:06 +03:00
- name: approve
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.TOKEN}}