Forbid PRs from modifying certain files

This commit is contained in:
AnimeGitB
2022-09-07 15:38:27 +09:30
parent 210e9e9732
commit a9ca80e490
2 changed files with 24 additions and 0 deletions

23
.github/workflows/protect_files.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
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."