mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 10:21:27 +00:00
913e814b59
## Description: Updated the stale comment, removed issue write permissions, updated the orphaned comment ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: loymdayddaud
26 lines
967 B
YAML
26 lines
967 B
YAML
name: 🧼 Stale PR Check
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@8f717f0dfca33b78d3c933452e42558e4456c8e7
|
|
with:
|
|
days-before-pr-close: 14
|
|
days-before-pr-stale: 14
|
|
days-before-issue-close: -1
|
|
days-before-issue-stale: -1
|
|
exempt-draft-pr: true
|
|
exempt-pr-assignees: evanpelle
|
|
exempt-pr-labels: "will not stale"
|
|
stale-pr-label: "Stale"
|
|
stale-pr-message: "This pull request is stale because it has been open for fourteen days with no activity. If you want to keep this pull request open, add a comment or update the branch."
|
|
close-pr-message: "This pull request has been closed because fourteen days have passed without activity. If you want to continue work on the code, comment or create a new PR."
|
|
close-pr-label: "Orphaned"
|