summaryrefslogtreecommitdiff
path: root/.github/workflows/pr-auto-close.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/pr-auto-close.yml')
-rw-r--r--.github/workflows/pr-auto-close.yml17
1 files changed, 9 insertions, 8 deletions
diff --git a/.github/workflows/pr-auto-close.yml b/.github/workflows/pr-auto-close.yml
index 36e1bba0e..40e13a25b 100644
--- a/.github/workflows/pr-auto-close.yml
+++ b/.github/workflows/pr-auto-close.yml
@@ -1,17 +1,18 @@
name: Auto-Close Pull Requests Circinus
on:
- pull_request:
+ pull_request_target:
+ types:
+ - opened
branches:
- circinus
jobs:
- auto_close_pr:
+ run:
runs-on: ubuntu-latest
steps:
- - name: Close PR
- run: |
- set -eux
- gh pr close ${{ github.event.pull_request.number }} --repo ${{ github.repository }} --comment "Pull requests to this branch are not accepted and have been closed automatically."
- env:
- GH_TOKEN: ${{ secrets.PAT }}
+ - uses: superbrothers/close-pull-request@v3
+ with:
+ # Optional. Post a issue comment just before closing a pull request.
+ comment: "Pull requests to this branch are not accepted and have been closed automatically."
+ github_token: ${{ secrets.PAT }}