Skip to content

Create test.txt

Create test.txt #20

Workflow file for this run

name: Auto Close PRs
on:
pull_request:
types: [opened]
jobs:
close-pr:
runs-on: ubuntu-latest
steps:
- name: Check PR Author
run: |
gh pr close ${{ github.event.pull_request.number }} -R ${{ github.repository }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}