mirror of
https://github.com/lingble/talos.git
synced 2026-03-20 04:03:37 +00:00
This brings in Go 1.22.5 and new Flannel CNI plugin. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
24 lines
860 B
YAML
24 lines
860 B
YAML
name: 'Close stale issues and PRs'
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
stale-issue-message: 'This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
|
|
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity.'
|
|
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
|
|
days-before-issue-stale: 180
|
|
days-before-pr-stale: 45
|
|
days-before-issue-close: 5
|
|
days-before-pr-close: -1 # never close PRs
|
|
operations-per-run: 2000 # the maximum number of operations to perform per run
|