Skip to content

Commit

Permalink
Create action to automatically close stale issues (#6282)
Browse files Browse the repository at this point in the history
* Create action to automatically close stale issues

Uses the [stale action](https://github.com/marketplace/actions/close-stale-issues) to automatically close stale issues.
  • Loading branch information
tobiasdiez committed Apr 13, 2020
1 parent fe79e51 commit fb2a6d7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Mark stale issues and pull requests

on:
schedule:
- cron: "0 0 * * *"

jobs:
stale:
runs-on: ubuntu-latest

steps:
- uses: actions/stale@master
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue will be closed in 7 days due to inactivity :zzz: Please provide the requested information if the problem persists.'
stale-issue-label: 's: stale'
days-before-stale: 30
only-labels: 's: waiting-for-customer-feedback'

0 comments on commit fb2a6d7

Please sign in to comment.