diff --git a/docs/daily-progress.md b/docs/daily-progress.md index 88dae0c..ee5bd67 100644 --- a/docs/daily-progress.md +++ b/docs/daily-progress.md @@ -140,7 +140,7 @@ The Daily Progress workflow follows a systematic 7-step process: - **Draft Pull Requests**: All feature changes are created as draft PRs for human review - **Roadmap Issues**: Central tracking of project goals and progress - **Scheduled Execution**: Runs only on weekdays to respect team schedules -- **Timeout Protection**: Limited to 30 minutes per run with 48-hour stop-after +g- **Timeout Protection**: Limited to 30 minutes per run with 1-month stop-after - **Safe Outputs**: Controlled limits on issues and PRs created ## Human in the loop diff --git a/workflows/ci-doctor.md b/workflows/ci-doctor.md index d6a0739..c7afd8d 100644 --- a/workflows/ci-doctor.md +++ b/workflows/ci-doctor.md @@ -8,7 +8,7 @@ on: - main # This will trigger only when the CI workflow completes with failure # The condition is handled in the workflow body - stop-after: +48h + stop-after: +1mo # Only trigger for failures - check in the workflow body if: ${{ github.event.workflow_run.conclusion == 'failure' }} diff --git a/workflows/daily-accessibility-review.md b/workflows/daily-accessibility-review.md index 2dd60c5..b545632 100644 --- a/workflows/daily-accessibility-review.md +++ b/workflows/daily-accessibility-review.md @@ -4,7 +4,7 @@ on: # Run daily at 3am UTC, all days except Saturday and Sunday - cron: "0 3 * * 1-5" workflow_dispatch: - stop-after: +48h # workflow will no longer trigger after 48 hours + stop-after: +1mo # workflow will no longer trigger after 1 month permissions: read-all diff --git a/workflows/daily-backlog-burner.md b/workflows/daily-backlog-burner.md index 7b96a7f..8f3acc8 100644 --- a/workflows/daily-backlog-burner.md +++ b/workflows/daily-backlog-burner.md @@ -4,7 +4,7 @@ on: schedule: # Run daily at 2am UTC, all days except Saturday and Sunday - cron: "0 2 * * 1-5" - stop-after: +48h # workflow will no longer trigger after 48 hours + stop-after: +1mo # workflow will no longer trigger after 1 month timeout-minutes: 30 diff --git a/workflows/daily-dependency-updates.md b/workflows/daily-dependency-updates.md index b0ab327..66ad63e 100644 --- a/workflows/daily-dependency-updates.md +++ b/workflows/daily-dependency-updates.md @@ -4,7 +4,7 @@ on: schedule: # Run daily at 2am UTC, all days except Saturday and Sunday - cron: "0 2 * * 1-5" - stop-after: +48h # workflow will no longer trigger after 48 hours. Remove this and recompile to run indefinitely + stop-after: +1mo # workflow will no longer trigger after 1 month. Remove this and recompile to run indefinitely permissions: read-all diff --git a/workflows/daily-perf-improver.md b/workflows/daily-perf-improver.md index cfe2822..54902f0 100644 --- a/workflows/daily-perf-improver.md +++ b/workflows/daily-perf-improver.md @@ -4,7 +4,7 @@ on: schedule: # Run daily at 2am UTC, all days except Saturday and Sunday - cron: "0 2 * * 1-5" - stop-after: +48h # workflow will no longer trigger after 48 hours + stop-after: +1mo # workflow will no longer trigger after 1 month timeout-minutes: 60 diff --git a/workflows/daily-plan.md b/workflows/daily-plan.md index c4d7a30..9c18013 100644 --- a/workflows/daily-plan.md +++ b/workflows/daily-plan.md @@ -6,7 +6,7 @@ on: - cron: "0 2 * * 1-5" workflow_dispatch: - stop-after: +30d # workflow will no longer trigger after 30 days. Remove this and recompile to run indefinitely + stop-after: +1mo # workflow will no longer trigger after 1 month. Remove this and recompile to run indefinitely permissions: read-all diff --git a/workflows/daily-progress.md b/workflows/daily-progress.md index 592143a..e1f5fec 100644 --- a/workflows/daily-progress.md +++ b/workflows/daily-progress.md @@ -4,7 +4,7 @@ on: schedule: # Run daily at 2am UTC, all days except Saturday and Sunday - cron: "0 2 * * 1-5" - stop-after: +48h # workflow will no longer trigger after 48 hours + stop-after: +1mo # workflow will no longer trigger after 1 month timeout-minutes: 30 diff --git a/workflows/daily-qa.md b/workflows/daily-qa.md index 2de2956..b4bd7bf 100644 --- a/workflows/daily-qa.md +++ b/workflows/daily-qa.md @@ -5,7 +5,7 @@ on: - cron: "0 3 * * 1-5" workflow_dispatch: - stop-after: +48h # workflow will no longer trigger after 48 hours + stop-after: +1mo # workflow will no longer trigger after 1 month timeout-minutes: 15 diff --git a/workflows/daily-team-status.md b/workflows/daily-team-status.md index 96ba7f2..ff05a78 100644 --- a/workflows/daily-team-status.md +++ b/workflows/daily-team-status.md @@ -5,7 +5,7 @@ on: - cron: "0 9 * * 1-5" workflow_dispatch: # workflow will no longer trigger after 30 days. Remove this and recompile to run indefinitely - stop-after: +30d + stop-after: +1mo permissions: contents: read issues: read diff --git a/workflows/daily-test-improver.md b/workflows/daily-test-improver.md index 9be2a73..59369c6 100644 --- a/workflows/daily-test-improver.md +++ b/workflows/daily-test-improver.md @@ -4,7 +4,7 @@ on: schedule: # Run daily at 2am UTC, all days except Saturday and Sunday - cron: "0 2 * * 1-5" - stop-after: +48h # workflow will no longer trigger after 48 hours + stop-after: +1mo # workflow will no longer trigger after 1 month timeout-minutes: 30 diff --git a/workflows/issue-triage.md b/workflows/issue-triage.md index ab5474c..5b0e215 100644 --- a/workflows/issue-triage.md +++ b/workflows/issue-triage.md @@ -2,7 +2,7 @@ on: issues: types: [opened, reopened] - stop-after: +30d # workflow will no longer trigger after 30 days. Remove this and recompile to run indefinitely + stop-after: +1mo # workflow will no longer trigger after 1 month. Remove this and recompile to run indefinitely reaction: eyes permissions: read-all diff --git a/workflows/pr-fix.md b/workflows/pr-fix.md index 9afe0f8..bc02ed6 100644 --- a/workflows/pr-fix.md +++ b/workflows/pr-fix.md @@ -3,7 +3,7 @@ on: command: name: pr-fix reaction: "eyes" - stop-after: +48h + stop-after: +1mo roles: [admin, maintainer, write] permissions: read-all diff --git a/workflows/repo-ask.md b/workflows/repo-ask.md index 2cf223b..83d1541 100644 --- a/workflows/repo-ask.md +++ b/workflows/repo-ask.md @@ -3,7 +3,7 @@ on: command: name: repo-ask reaction: "eyes" - stop-after: +48h + stop-after: +1mo roles: [admin, maintainer, write] permissions: read-all diff --git a/workflows/update-docs.md b/workflows/update-docs.md index 11cb18c..69ff247 100644 --- a/workflows/update-docs.md +++ b/workflows/update-docs.md @@ -3,7 +3,7 @@ on: push: branches: [main] workflow_dispatch: - stop-after: +30d # workflow will no longer trigger after 30 days. Remove this and recompile to run indefinitely + stop-after: +1mo # workflow will no longer trigger after 1 month. Remove this and recompile to run indefinitely permissions: read-all diff --git a/workflows/weekly-research.md b/workflows/weekly-research.md index 5772cb4..1fc8e89 100644 --- a/workflows/weekly-research.md +++ b/workflows/weekly-research.md @@ -5,7 +5,7 @@ on: - cron: "0 9 * * 1" workflow_dispatch: - stop-after: +30d # workflow will no longer trigger after 30 days. Remove this and recompile to run indefinitely + stop-after: +1mo # workflow will no longer trigger after 1 month. Remove this and recompile to run indefinitely permissions: read-all