Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/daily-progress.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion workflows/ci-doctor.md
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand Down
2 changes: 1 addition & 1 deletion workflows/daily-accessibility-review.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion workflows/daily-backlog-burner.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion workflows/daily-dependency-updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion workflows/daily-perf-improver.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion workflows/daily-plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion workflows/daily-progress.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion workflows/daily-qa.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion workflows/daily-team-status.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion workflows/daily-test-improver.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion workflows/issue-triage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion workflows/pr-fix.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
command:
name: pr-fix
reaction: "eyes"
stop-after: +48h
stop-after: +1mo

roles: [admin, maintainer, write]
permissions: read-all
Expand Down
2 changes: 1 addition & 1 deletion workflows/repo-ask.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
command:
name: repo-ask
reaction: "eyes"
stop-after: +48h
stop-after: +1mo
roles: [admin, maintainer, write]

permissions: read-all
Expand Down
2 changes: 1 addition & 1 deletion workflows/update-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion workflows/weekly-research.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down