Skip to content

Commit

Permalink
Merge pull request #493 from mikeller/add_stale_action
Browse files Browse the repository at this point in the history
Changed stale request handling to use a GitHub action.
  • Loading branch information
mikeller authored Jan 17, 2021
2 parents 973f354 + c20fc9d commit e7bf98d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 55 deletions.
55 changes: 0 additions & 55 deletions .github/stale.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 'Close stale issues'

on:
schedule:
- cron: "30 4 * * *"

jobs:
stale:
name: 'Check and close stale issues'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
operations-per-run: 30
days-before-stale: 30
days-before-close: 7
stale-issue-message: >
This issue has been automatically marked as stale because it
has not had recent activity. It will be closed if no further activity occurs
within a week.
close-issue-message: 'Issue closed automatically as inactive.'
exempt-issue-labels: 'BUG,Feature Request,Pinned,Has Milestone'
stale-issue-label: 'Inactive'
stale-pr-message: >
This pull request has been automatically marked as stale because it
has not had recent activity. It will be closed if no further activity occurs
within a week.
close-pr-message: 'Pull request closed automatically as inactive.'
exempt-pr-labels: 'Pinned,Has Milestone'
stale-pr-label: 'Inactive'

0 comments on commit e7bf98d

Please sign in to comment.