-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This change adds a new GitHub action which automatically closes all GitHub issues or pull requests and redirects users to Unreal Engine support.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: 'Repo Lockdown' | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
bcbee
Author
Contributor
|
||
|
||
on: | ||
issues: | ||
types: opened | ||
pull_request_target: | ||
types: opened | ||
schedule: | ||
- cron: '0 * * * *' | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
action: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/repo-lockdown@v2 | ||
with: | ||
issue-comment: 'Epic Games does not accept issues on this repository. Please visit https://www.unrealengine.com/support for support.' | ||
pr-comment: 'Epic Games does not accept pull requests on this repository. Please visit https://www.unrealengine.com/support for support.' |
You can simply disable issues in the repo settings ^^