diff --git a/docs/src/content/docs/patterns/daily-ops.md b/docs/src/content/docs/patterns/daily-ops.md index b26bc0ff74..513f0fb536 100644 --- a/docs/src/content/docs/patterns/daily-ops.md +++ b/docs/src/content/docs/patterns/daily-ops.md @@ -7,13 +7,6 @@ sidebar: DailyOps workflows automate incremental progress toward large goals through small, scheduled daily changes. Work happens automatically in manageable pieces that are easy to review and integrate. -## When to Use DailyOps - -- **Continuous improvement** - Daily code quality improvements -- **Progressive migrations** - Gradually update dependencies or patterns -- **Documentation maintenance** - Keep docs fresh with daily updates -- **Technical debt** - Chip away at issues one small PR at a time - ## The DailyOps Pattern ### Scheduled Execution @@ -84,14 +77,6 @@ This repository implements several DailyOps workflows demonstrating different us All follow the phased approach with discussions for tracking and draft pull requests for review. -## Implementation Guide - -1. **Define Goal** - Identify ongoing goal (test coverage, performance, docs sync) -2. **Design Workflow** - Set weekday schedule, configure `safe-outputs` for discussions/PRs -3. **Research Phase** - Analyze state, create discussion, wait for approval -4. **Config Phase** - Create config files, test, submit PR, wait for approval -5. **Execute Daily** - Make small improvements, verify, create draft PRs, update discussion - ## Related Patterns - **IssueOps** - Trigger workflows from issue creation or comments