Switch Developer Documentation Consolidator cadence from daily to weekly#34031
Merged
Conversation
Co-authored-by: pelikhan <[email protected]>
Co-authored-by: pelikhan <[email protected]>
Copilot
AI
changed the title
[WIP] Change Developer Documentation Consolidator schedule to weekly
Switch Developer Documentation Consolidator cadence from daily to weekly
May 22, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR aims to reduce automation load by switching the Developer Documentation Consolidator workflow from a daily to a weekly cadence.
Changes:
- Updated
.github/workflows/developer-docs-consolidator.mdto use a weekly schedule and adjusted the workflow mission text to match. - Updated
.github/workflows/smoke-temporary-id.lock.ymlwith regenerated workflow content (tooling/action wiring, container versions, and related steps). - Updated
.github/workflows/ai-moderator.lock.ymlto change theGH_AW_SKIP_BOTSenvironment value.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/developer-docs-consolidator.md | Changes consolidator schedule to weekly and updates mission text accordingly. |
| .github/workflows/smoke-temporary-id.lock.yml | Regenerated lock workflow with updated setup/action usage and version bumps. |
| .github/workflows/ai-moderator.lock.yml | Adjusts the compiled GH_AW_SKIP_BOTS value (ordering/casing). |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 3/3 changed files
- Comments generated: 3
Comment on lines
2
to
5
| on: | ||
| schedule: | ||
| - cron: daily | ||
| - cron: weekly | ||
| workflow_dispatch: null |
Comment on lines
1
to
7
| --- | ||
| on: | ||
| schedule: | ||
| - cron: daily | ||
| - cron: weekly | ||
| workflow_dispatch: null | ||
| permissions: | ||
| actions: read |
| uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 | ||
| env: | ||
| GH_AW_SKIP_BOTS: "github-actions,copilot,dependabot,renovate,github-copilot-enterprise,copilot-swe-agent" | ||
| GH_AW_SKIP_BOTS: "github-actions,copilot-swe-agent,Copilot,copilot,dependabot,renovate,github-copilot-enterprise" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As requested, this PR description summarizes the schedule optimization change:
developer-docs-consolidatorcurrently runs daily, and this update moves it to a weekly cadence to reduce unnecessary executions while preserving periodic documentation consolidation..github/workflows/developer-docs-consolidator.mdfrom daily to weekly scheduling.