diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2018-10-22 20:19:54 +0300 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2018-10-23 15:11:07 +0300 |
commit | 28bc4b2bd87fb15821b0aac911224577d4fe5a32 (patch) | |
tree | 5441331269ffcfb8ab5baa7f72f4d551fedd48c5 /.github/stale.yml | |
parent | 83ac1152757dfda0964383ac0fed6d87cd188b6d (diff) | |
download | qtlocation-mapboxgl-28bc4b2bd87fb15821b0aac911224577d4fe5a32.tar.gz |
Add configuration for stale bot
Automatically close stale issues and pull requests.
Diffstat (limited to '.github/stale.yml')
-rw-r--r-- | .github/stale.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000000..67a4caf651 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,28 @@ +# Configuration for probot-stale - https://github.com/probot/stale + +exemptProjects: false +exemptMilestones: false + +staleLabel: archived + +limitPerRun: 1 + +# SEMVER-MAJOR - @tobrun +exemptLabels: + - SEMVER-MAJOR + +pulls: + daysUntilStale: 60 + daysUntilClose: -1 + staleComment: false + closeComment: > + This pull request has been automatically detected as stale because it has not had + recent activity and will be archived. Thank you for your contributions. + +issues: + daysUntilStale: 180 + daysUntilClose: -1 + staleComment: false + closeComment: > + This issue has been automatically detected as stale because it has not had + recent activity and will be archived. Thank you for your contributions. |