mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 10:25:16 +00:00
d4aeefc297
* add github action to automatically handle stale user support issues * improve stale message * remove token part
22 lines
691 B
YAML
22 lines
691 B
YAML
name: 'Close stale issues'
|
|
on:
|
|
schedule:
|
|
# Run daily at 430 am PT
|
|
- cron: '30 11 * * *'
|
|
permissions:
|
|
issues: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
stale-issue-message: 'This issue is being marked stale because it has not had any activity for 30 days. Reply below within 7 days if your issue still isn't solved, and it will be left open. Otherwise, the issue will be closed automatically.'
|
|
days-before-stale: 30
|
|
days-before-close: 7
|
|
stale-issue-label: 'Stale'
|
|
only-labels: 'User Support'
|
|
exempt-all-assignees: true
|
|
exempt-all-milestones: true
|