mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-22 20:03:21 +00:00
23 lines
515 B
YAML
23 lines
515 B
YAML
name: Protect write-access files from being PR'd
|
|
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
branches:
|
|
- development
|
|
paths:
|
|
- '.github/'
|
|
- '.editorconfig'
|
|
- 'CODE_OF_CONDUCT.md'
|
|
- 'CONTRIBUTING.md'
|
|
- 'LICENSE'
|
|
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: superbrothers/close-pull-request@v3
|
|
with:
|
|
comment: "This PR has been closed for modifying protected files. See `CONTIBUTING.md` for more information." |