mirror of
https://github.com/Expand-sys/awx-on-k3s
synced 2025-12-16 14:02:15 +11:00
21 lines
710 B
YAML
21 lines
710 B
YAML
name: Close stale issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 19 * * *"
|
|
|
|
jobs:
|
|
issues:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/stale@v6
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: This issue is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 7 days.
|
|
close-issue-message: This issue was closed because it has been stalled for 7 days with no activity.
|
|
stale-issue-label: stale
|
|
exempt-issue-labels: exempt
|
|
days-before-issue-stale: 14
|
|
days-before-issue-close: 7
|
|
days-before-pr-stale: -1
|
|
days-before-pr-close: -1
|