Skip to content

Commit

Permalink
Stale label github action (#8244)
Browse files Browse the repository at this point in the history
  • Loading branch information
GenevieveBuckley committed Oct 19, 2021
1 parent 7b1f306 commit 98fed9b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/stale-bot.yaml
@@ -0,0 +1,20 @@
name: 'Label stale issues and PRs'
on:
schedule:
- cron: '30 1 * * 1' # runs once a week

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: '' # no comment left if string is empty
stale-pr-message: '' # no comment left if string is empty
days-before-stale: 30
days-before-close: -1
stale-issue-label: 'needs attention'
stale-pr-label: 'needs attention'
exempt-issue-labels: 'good intro to dask,good first issue,Good First Issue,good second issue,feature request'
exempt-draft-pr: true
start-date: '2020-04-18T00:00:00Z' # ignore before this date, ISO 8601 or RFC 2822

0 comments on commit 98fed9b

Please sign in to comment.