Skip to content

Commit

Permalink
Add stale action
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv committed Apr 13, 2022
1 parent ceefe01 commit c14a946
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .github/stale.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Close stale issues

on:
issues:
cron: "0 0 * * *"

jobs:
stale:

runs-on: ubuntu-latest

permissions:
issues: write

steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.COMMAND_BOT_PAT }}
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity and seems to be missing some essential information.
It will be closed if no further activity occurs. Thank you
for your contributions.
stale-issue-label: 'stale'
only-labels: 'needs info'
exempt-issue-labels: '1. to develop,2. developing,3. to review,4. to release,security'
days-before-stale: 30
days-before-close: 14
debug-only: true

0 comments on commit c14a946

Please sign in to comment.