mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 08:20:51 +01:00
15 lines
412 B
YAML
15 lines
412 B
YAML
name: Close invalid PRs
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [ opened ]
|
|
|
|
jobs:
|
|
run:
|
|
if: ${{ github.repository != github.event.pull_request.head.repo.full_name && github.head_ref == 'master' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: superbrothers/close-pull-request@v3
|
|
with:
|
|
comment: "Please do not open pull requests from the `master` branch, create a new branch instead."
|