mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
24 lines
620 B
YAML
24 lines
620 B
YAML
name: Mark and close stale issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
stale-issue-label: Stale
|
|
days-before-issue-stale: 60
|
|
days-before-issue-close: 14
|
|
exempt-issue-labels: Bug,Planned,Pinned,Security,Done,In Progress
|
|
operations-per-run: 100
|
|
close-issue-message: >
|
|
Closing this issue due to inactivity.
|