-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
According to bot support page:
📯 The stale app is deprecated and this repository is no longer maintained
Please use the stale action instead.
Also, according to the bot's source code repo:
This repository has been archived by the owner on May 19, 2023. It is now read-only.
This calls for another reusable workflow. Here's a actions/stale example that I think would work for our needs:
name: 'Close stale issues'
on:
schedule:
- cron: '30 1 * * *'
permissions:
issues: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
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.
# Better to exclude certain issues from being marked as stale
exempt-issue-labels: 'help wanted'shenxianpeng
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request