Skip to content

Commit

Permalink
chore: Update configuration for stale action
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyno-zeta committed Jan 5, 2021
1 parent 555804a commit ce63f5b
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
- cron: "0 0 * * *"

jobs:
stale:
runs-on: ubuntu-18.04
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 10 days'
days-before-stale: 30
days-before-close: 10
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 10 days"
days-before-stale: 30
days-before-close: 10
exempt-issue-labels: "awaiting-approval,work-in-progress,no-stale"
exempt-pr-labels: "awaiting-approval,work-in-progress,no-stale"
stale-issue-label: "no-issue-activity"

0 comments on commit ce63f5b

Please # to comment.