-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci - Add github config for welcome and stale bot (#118)
- Loading branch information
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# SPDX-FileCopyrightText: none | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
# Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome | ||
|
||
# Comment to be posted to on first time issues | ||
newIssueWelcomeComment: > | ||
Thanks for opening your first issue here! Be sure to follow the issue template! | ||
# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome | ||
|
||
# Comment to be posted to on PRs from first time contributors in your repository | ||
newPRWelcomeComment: > | ||
Welcome to the community and thanks for opening your first pull request. | ||
Feel free to look for more issues to tackle at https://github.com/DinoTools/python-ssdeep/issues | ||
# Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge | ||
|
||
# Comment to be posted to on pull requests merged by a first time user | ||
# firstPRMergeComment: > | ||
# Congrats on merging your first pull request! We here at behaviorbot are proud of you! | ||
|
||
# It is recommend to include as many gifs and emojis as possible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# SPDX-FileCopyrightText: none | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 14 | ||
|
||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 7 | ||
|
||
# Only issues that requires info from the op | ||
onlyLabels: | ||
- "Status: Feedback needed" | ||
|
||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- "Priority: Critical" | ||
- "Priority: Security" | ||
- "Status: Confirmed" | ||
- "Status: Complete" | ||
- "Status: Review Needed" | ||
- "Status: On Hold" | ||
- "Status: In Progress" | ||
- security | ||
|
||
# Label to use when marking an issue as stale | ||
staleLabel: "Status: Stale" | ||
|
||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity and seems to be missing some essential information. It will | ||
be closed if no further activity occurs. Thank you for your contributions. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
# closeComment: false | ||
|
||
# Limit the number of actions per hour, from 1-30. Default is 30 | ||
limitPerRun: 30 | ||
|
||
# Limit to only `issues` or `pulls` | ||
only: issues |