mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 19:58:33 +00:00
19 lines
697 B
YAML
19 lines
697 B
YAML
name: Close Stale PRs
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/stale@v6
|
|
with:
|
|
stale-pr-message: 'This issue is stale because it has been open for 6 months with no activity. Remove stale label or comment or this will be closed in 1 month.'
|
|
stale-issue-message: This issue is stale because it has been open for 6 months with no activity. Remove stale label or comment or this will be closed in 1 month.'
|
|
remove-stale-when-updated: true
|
|
# 6 months
|
|
days-before-stale: 183
|
|
# 1 month
|
|
days-before-close: 31
|
|
only-labels: 'waiting-on-response'
|