run at 1:30am

This commit is contained in:
Proddy
2025-04-21 09:06:37 +02:00
committed by GitHub
parent 026828efc7
commit 6472e9e224

View File

@@ -2,22 +2,22 @@ name: "Mark or close stale issues and PRs"
on: on:
schedule: schedule:
- cron: "30 * * * *" - cron: "30 1 * * *"
jobs: jobs:
stale: stale:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/stale@v9 - uses: actions/stale@v9
with: with:
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 30 days-before-stale: 30
days-before-close: 5 days-before-close: 5
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment otherwise this will be closed in 5 days." stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment otherwise this will be closed in 5 days."
stale-pr-message: "This PR has been automatically marked as stale because there has been no activity in last 30 days. It will be closed if no further activity occurs. Thank you for your contributions." stale-pr-message: "This PR has been automatically marked as stale because there has been no activity in last 30 days. It will be closed if no further activity occurs. Thank you for your contributions."
close-issue-message: "This issue was closed because it has been stalled for 5 days with no activity." close-issue-message: "This issue was closed because it has been stalled for 5 days with no activity."
close-pr-message: "This PR was automatically closed because of being stale." close-pr-message: "This PR was automatically closed because of being stale."
stale-pr-label: "stale" stale-pr-label: "stale"
stale-issue-label: "stale" stale-issue-label: "stale"
exempt-issue-labels: "bug,enhancement,pinned,security" exempt-issue-labels: "bug,enhancement,pinned,security"
exempt-pr-labels: "bug,enhancement,pinned,security" exempt-pr-labels: "bug,enhancement,pinned,security"