Skip to content

Commit

Permalink
ci: add workflow "stale" (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
hasezoey authored Sep 8, 2020
1 parent 52f5ae6 commit 5465af8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# https://github.com/actions/stale

name: Mark stale issues and pull requests

on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Marking Issue as stale, will be closed in 7 days if no more activity is seen'
close-issue-message: 'Closing Issue because it is marked as stale'
stale-issue-label: stale
only-labels: question,can't reproduce,Needs More Information,needs repro script,stale
exempt-issue-labels: help wanted,docs,enhancement,feature,dependencies
days-before-stale: 60
days-before-close: 7
remove-stale-when-updated: true

0 comments on commit 5465af8

Please sign in to comment.