Skip to content

Commit

Permalink
chore(github): Add action to close all pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
klausi committed Aug 29, 2024
1 parent 80571b0 commit d1b7999
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Close all issues

on:
issues:
types: [opened]

jobs:
closeAll:
runs-on: ubuntu-latest
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/close-pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Close all pull requests

on:
pull_request_target:
types: [opened]

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: superbrothers/close-pull-request@v3
with:
comment: |
Please open issues and pull requests on drupal.org: https://www.drupal.org/project/issues/graphql
Auto-closing this pull request.

0 comments on commit d1b7999

Please sign in to comment.