Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

Commit

Permalink
ci: add "stale" github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie White committed Aug 3, 2020
1 parent 68ff1a5 commit df5acd8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/stale.yml
@@ -0,0 +1,24 @@
name: Close stale issues

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

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
debug-only: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: -1 # do not mark issues or pull requests as stale automatically
days-before-close: 7 # wait 7 days before closing a stale issue
stale-issue-label: stale
stale-pr-label: stale
close-issue-message:
A week has passed since we marked this issue as stale and
we’ve received no further feedback or input. As a result,
we are automatically closing it.
See https://oclif.io/docs/how_we_work for more
information on our stale issue policy.

0 comments on commit df5acd8

Please sign in to comment.