mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-08 02:18:25 +01:00
23 lines
693 B
YAML
23 lines
693 B
YAML
|
name: Close stale issues
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '30 1 * * *'
|
||
|
|
||
|
jobs:
|
||
|
stale:
|
||
|
runs-on: ubuntu-latest
|
||
|
permissions:
|
||
|
issues: write
|
||
|
pull-requests: write
|
||
|
steps:
|
||
|
- uses: actions/stale@v8
|
||
|
with:
|
||
|
days-before-issue-stale: 60
|
||
|
days-before-issue-close: 7
|
||
|
stale-issue-label: 'stale'
|
||
|
stale-issue-message: 'This issue is stale because it has been open for 60 days with no activity.'
|
||
|
close-issue-message: 'This issue was closed because it has been inactive for 7 days since being marked as stale.'
|
||
|
days-before-pr-stale: -1
|
||
|
days-before-pr-close: -1
|
||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|