8000 [9.x] Auto close pull requests on illuminate repositories by driesvints · Pull Request #39318 · laravel/framework · GitHub
[go: up one dir, main page]

Skip to content

[9.x] Auto close pull requests on illuminate repositories #39318

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 22, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Auto close pull requests on illuminate repositories
  • Loading branch information
driesvints committed Oct 22, 2021
commit 5f14cbfe8d0197c837e80000f1837e49b8bc07f9
13 changes: 13 additions & 0 deletions src/Illuminate/Auth/.github/workflows/close-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Close Pull Request

on:
pull_request_target:
types: [opened]

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: superbrothers/close-pull-request@v3
with:
comment: "Heya,<br><br>Thanks for your PR. You've submitted this on the Illuminate organization which is a read-only sub split of `laravel/framework`. Please submit your PR on the https://github.com/laravel/framework repository.<br><br>Thanks!"
0