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

Commit

Permalink
Add stale actions
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonHorkles committed Mar 30, 2024
1 parent 3a4fc06 commit 8d789fc
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Close Stale Issues

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

jobs:
stale:

runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write

steps:
- uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: ''
stale-pr-message: ''
stale-issue-label: 'Stale'
stale-pr-label: 'Stale'
any-of-labels: 'Waiting for Author'
days-before-stale: 30
days-before-close: 0

0 comments on commit 8d789fc

Please sign in to comment.