Skip to content

Commit

Permalink
Create stale issue and PR automated action for github
Browse files Browse the repository at this point in the history
  • Loading branch information
ejbills authored Jul 18, 2024
1 parent 3e39da2 commit 3de4a17
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Close stale issues and PRs'

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

permissions:
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v6
with:
exempt-all-milestones: true
any-of-labels: 'need info'
days-before-stale: 30
days-before-close: 7
stale-issue-message: "This issue has been automatically marked as stale as there has been no recent activity in response to our request for more information. Please respond so that we can proceed with this issue."
close-issue-message: "This issue has been automatically closed as sufficient information hasn't been provided on the issue for further actions to be taken. Feel free to add more information."

0 comments on commit 3de4a17

Please sign in to comment.