-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create github workflow to mark old issues as stale and close (#1011)
This workflow is to mark all issues as stale after 30 days, and mark for closure after 60. Issues labeled "awaiting-maintainer" will not be marked stale.
- Loading branch information
Showing
1 changed file
with
45 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,45 @@ | ||
--- | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# This workflow applies stale label to issues that have had no activity for atleast 30 days. | ||
# | ||
# You can adjust the behavior by modifying this file. | ||
# For more information, see: | ||
# https://github.com/actions/stale | ||
name: Mark stale | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: 0 10 1,15 * * | ||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
name: stale issues | ||
steps: | ||
- name: Stale issues | ||
uses: actions/stale@v8 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
days-before-issue-stale: 30 | ||
days-before-issue-close: 60 | ||
stale-issue-message: > | ||
'This issue is marked as Stale due to inactivity for more than 30 days. To | ||
avoid being marked as 'stale' please add 'awaiting-maintainer' label or | ||
add a comment. Thank you for your contributions ' | ||
stale-issue-label: stale | ||
exempt-issue-labels: awaiting-maintainer, obsolete | ||
ascending: true | ||
enable-statistics: true | ||
labels-to-remove-when-unstale: stale,obsolete |