Dummy #1
Workflow file for this run
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: Auto approve PR | |
on: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
move-assigned-card: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup git | |
run: | | |
git config --global user.name "GH Actions bot" | |
git config --global user.email "<>" | |
- name: Auto approve PR | |
run: | | |
gh pr review --approve -b "You seem like a trust worthy individual. I'll just approve this for you, I'm sure it's fine. Right?" $PR | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PR: ${{ github.event.pull_request.number }} |