Skip to content

Commit

Permalink
Create stale.yml github action
Browse files Browse the repository at this point in the history
Github action to post when issues and PRs are stale. To start this has debug-only to see a dry run and adjust from the results.
  • Loading branch information
jeffbean authored Apr 13, 2024
1 parent 2480e3d commit 4475e6a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 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: Mark stale issues and pull requests

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

jobs:
stale:

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

steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Stale issue message'
stale-pr-message: 'Stale pull request message'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
days-before-stale: 180
days-before-issue-stale: 730
days-before-close: 15
days-before-pr-close: -1
debug-only: 'true'
exempt-issue-milestones: "v2"

0 comments on commit 4475e6a

Please sign in to comment.