Skip to content

Commit ea35016

Browse files
Copilotpelikhan
andauthored
Standardize stop-after fields to +1 month across all workflows (#71)
* Initial plan * Update all stop-after fields to use +1 month Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> * default stop-after to 1month --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> Co-authored-by: Peli de Halleux <pelikhan@users.noreply.github.com>
1 parent 09e77ed commit ea35016

16 files changed

Lines changed: 16 additions & 16 deletions

docs/daily-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ The Daily Progress workflow follows a systematic 7-step process:
140140
- **Draft Pull Requests**: All feature changes are created as draft PRs for human review
141141
- **Roadmap Issues**: Central tracking of project goals and progress
142142
- **Scheduled Execution**: Runs only on weekdays to respect team schedules
143-
- **Timeout Protection**: Limited to 30 minutes per run with 48-hour stop-after
143+
g- **Timeout Protection**: Limited to 30 minutes per run with 1-month stop-after
144144
- **Safe Outputs**: Controlled limits on issues and PRs created
145145

146146
## Human in the loop

workflows/ci-doctor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- main
99
# This will trigger only when the CI workflow completes with failure
1010
# The condition is handled in the workflow body
11-
stop-after: +48h
11+
stop-after: +1mo
1212

1313
# Only trigger for failures - check in the workflow body
1414
if: ${{ github.event.workflow_run.conclusion == 'failure' }}

workflows/daily-accessibility-review.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
# Run daily at 3am UTC, all days except Saturday and Sunday
55
- cron: "0 3 * * 1-5"
66
workflow_dispatch:
7-
stop-after: +48h # workflow will no longer trigger after 48 hours
7+
stop-after: +1mo # workflow will no longer trigger after 1 month
88

99
permissions: read-all
1010

workflows/daily-backlog-burner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
schedule:
55
# Run daily at 2am UTC, all days except Saturday and Sunday
66
- cron: "0 2 * * 1-5"
7-
stop-after: +48h # workflow will no longer trigger after 48 hours
7+
stop-after: +1mo # workflow will no longer trigger after 1 month
88

99
timeout-minutes: 30
1010

workflows/daily-dependency-updates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
schedule:
55
# Run daily at 2am UTC, all days except Saturday and Sunday
66
- cron: "0 2 * * 1-5"
7-
stop-after: +48h # workflow will no longer trigger after 48 hours. Remove this and recompile to run indefinitely
7+
stop-after: +1mo # workflow will no longer trigger after 1 month. Remove this and recompile to run indefinitely
88

99
permissions: read-all
1010

workflows/daily-perf-improver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
schedule:
55
# Run daily at 2am UTC, all days except Saturday and Sunday
66
- cron: "0 2 * * 1-5"
7-
stop-after: +48h # workflow will no longer trigger after 48 hours
7+
stop-after: +1mo # workflow will no longer trigger after 1 month
88

99
timeout-minutes: 60
1010

workflows/daily-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: "0 2 * * 1-5"
77
workflow_dispatch:
88

9-
stop-after: +30d # workflow will no longer trigger after 30 days. Remove this and recompile to run indefinitely
9+
stop-after: +1mo # workflow will no longer trigger after 1 month. Remove this and recompile to run indefinitely
1010

1111
permissions: read-all
1212

workflows/daily-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
schedule:
55
# Run daily at 2am UTC, all days except Saturday and Sunday
66
- cron: "0 2 * * 1-5"
7-
stop-after: +48h # workflow will no longer trigger after 48 hours
7+
stop-after: +1mo # workflow will no longer trigger after 1 month
88

99
timeout-minutes: 30
1010

workflows/daily-qa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- cron: "0 3 * * 1-5"
66
workflow_dispatch:
77

8-
stop-after: +48h # workflow will no longer trigger after 48 hours
8+
stop-after: +1mo # workflow will no longer trigger after 1 month
99

1010
timeout-minutes: 15
1111

workflows/daily-team-status.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- cron: "0 9 * * 1-5"
66
workflow_dispatch:
77
# workflow will no longer trigger after 30 days. Remove this and recompile to run indefinitely
8-
stop-after: +30d
8+
stop-after: +1mo
99
permissions:
1010
contents: read
1111
issues: read

0 commit comments

Comments
 (0)