Skip to content

Commit

Permalink
Replace stale.yml with a new scheduled actoin
Browse files Browse the repository at this point in the history
  • Loading branch information
ffried committed Aug 23, 2023
1 parent faf4a41 commit 30b037b
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 21 deletions.
21 changes: 0 additions & 21 deletions .github/stale.yml

This file was deleted.

37 changes: 37 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: 'Manage stale issues and PRs'

on:
schedule:
- cron: '30 1 * * *'

permissions:
# contents: write # only for delete-branch option, which we leave to default `false` right now.
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
days-before-stale: 60
days-before-close: 7
stale-issue-label: Stale
stale-pr-label: Stale
exempt-all-assignees: true
exempt-draft-pr: true
exempt-issue-labels: Important,Blocker,Feature Request,Good First Issue
exempt-pr-labels: Important,Blocker,Feature Request
stale-issue-message: >
This issue has been automatically marked as stale because it has not had recent activity.
It will be closed if no further activity occurs.
If this is still an issue, please make sure it is up to date and if so,
add a comment that this is still an issue to keep it open.
Thank you for your contribution.
stale-pr-message: >
This pull request has been automatically marked as stale because it has not had recent activity.
It will be closed if no further activity occurs.
If this pull request is still valid, please make sure it is up to date and if so,
add a comment that this is still valid to keep it open.
Thank you for your contribution.

0 comments on commit 30b037b

Please sign in to comment.