chore(deps): update module github.com/apparentlymart/go-textseg/v15 to v16 #1462
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Self Approval | |
on: | |
pull_request: | |
types: | |
- 'opened' | |
- 'reopened' | |
- 'synchronize' | |
- 'ready_for_review' | |
jobs: | |
approval: | |
name: Self Approval | |
if: ${{ github.event.pull_request.user.login == github.repository_owner && ! github.event.pull_request.draft }} | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Self Approval | |
run: gh pr review --repo "${REPOSITORY}" --approve "${PR_NUMBER}" | |
env: | |
REPOSITORY: ${{ github.repository }} | |
PR_NUMBER: ${{ github.event.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |