Skip to content

Fix test

Fix test #3

Workflow file for this run

name: Approver
on:
pull_request:
types:
- opened
jobs:
approve:
runs-on: ubuntu-latest
if: endsWith(github.actor, '[bot]')
steps:
- name: Approve
run: gh pr review ${{ github.event.number }} --approve
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}