fix: make SIPs exempt from stale bots (#7278)

* fix: make SIPs exempt from stale bots

* update pr template
This commit is contained in:
Krist Wongsuphasawat 2019-04-10 09:24:45 -07:00 committed by GitHub
parent 0c3e46f8ae
commit f9db605e0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 10 deletions

View File

@ -1,22 +1,31 @@
##### SUMMARY ### CATEGORY
Choose one
- [ ] Bug Fix
- [ ] Enhancement (new features, refinement)
- [ ] Refactor
- [ ] Add tests
- [ ] Build / Development Environment
- [ ] Documentation
### SUMMARY
<!--- Describe the change below, including rationale and design decisions --> <!--- Describe the change below, including rationale and design decisions -->
### BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF ### BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
<!--- Skip this if not applicable --> <!--- Skip this if not applicable -->
### TEST PLAN ### TEST PLAN
<!--- What steps were taken to verify --> <!--- What steps should be taken to verify the changes -->
### ADDITIONAL INFORMATION ### ADDITIONAL INFORMATION
<!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue -->
<!--- Check any relevant boxes with "x" --> <!--- Check any relevant boxes with "x" -->
<!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue -->
- [ ] Has associated issue: - [ ] Has associated issue:
- [ ] Changes UI - [ ] Changes UI
- [ ] Requires DB Migration. Confirm DB Migration upgrade and downgrade tested. - [ ] Requires DB Migration.
- [ ] Confirm DB Migration upgrade and downgrade tested.
- [ ] Introduces new feature or API - [ ] Introduces new feature or API
- [ ] Removes existing feature or API - [ ] Removes existing feature or API
- [ ] Fixes bug
- [ ] Refactors code
- [ ] Adds test(s)
### REVIEWERS ### REVIEWERS

7
.github/stale.yml vendored
View File

@ -4,7 +4,7 @@ daysUntilStale: 60
daysUntilClose: 7 daysUntilClose: 7
# Issues with these labels will never be considered stale # Issues with these labels will never be considered stale
exemptLabels: exemptLabels:
- "SIP" - "#SIP"
- ".pinned" - ".pinned"
- ".security" - ".security"
# Label to use when marking an issue as stale # Label to use when marking an issue as stale
@ -12,7 +12,8 @@ staleLabel: inactive
# Comment to post when marking an issue as stale. Set to `false` to disable # Comment to post when marking an issue as stale. Set to `false` to disable
markComment: > markComment: >
This issue has been automatically marked as stale because it has not had This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you recent activity. It will be closed if no further activity occurs.
for your contributions. Thank you for your contributions. For admin, please label this issue `.pinned`
to prevent stale bot from closing the issue.
# Comment to post when closing a stale issue. Set to `false` to disable # Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false closeComment: false