Skip to content

Commit

Permalink
🔧Add new stale bot (angularsen#1406)
Browse files Browse the repository at this point in the history
The old stale bot stopped working after GitHub deprecated the old way of
doing things.
  • Loading branch information
angularsen authored Jul 8, 2024
1 parent 21ce300 commit d008d5c
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 62 deletions.
62 changes: 0 additions & 62 deletions .github/stale.yml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# 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 2 * * *' # Runs every day at 02:00 UTC

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: '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 7 days.'
stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
close-issue-message: 'This issue was automatically closed due to inactivity.'
close-pr-message: 'This PR was automatically closed due to inactivity.'
days-before-issue-stale: 30
days-before-pr-stale: 60
days-before-issue-close: 7
days-before-pr-close: 7
exempt-issue-labels: 'pinned'
exempt-pr-labels: 'pinned'
exempt-draft-pr: false
exempt-milestones: true
exempt-all-milestones: true

0 comments on commit d008d5c

Please sign in to comment.