Skip to content
Open
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
1 change: 1 addition & 0 deletions docs/README.workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-agentic-workflows) for guideline
| [OSS Release Compliance Checker](../workflows/ospo-release-compliance-checker.md) | Analyzes a target repository against open source release requirements and posts a detailed compliance report as an issue comment. | issues, workflow_dispatch |
| [Relevance Check](../workflows/relevance-check.md) | Slash command to evaluate whether an issue or pull request is still relevant to the project | slash_command, roles |
| [Relevance Summary](../workflows/relevance-summary.md) | Manually triggered workflow that summarizes all open issues and PRs with a /relevance-check response into a single issue | workflow_dispatch |
| [Weekly Comment Sync](../workflows/weekly-comment-sync.md) | Weekly workflow that finds stale code comments or README snippets, makes text-only synchronization updates, and opens a draft pull request when changes are needed. | schedule, workflow_dispatch |
105 changes: 105 additions & 0 deletions workflows/weekly-comment-sync.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
---
name: 'Weekly Comment Sync'
description: 'Weekly workflow that finds stale code comments or README snippets, makes text-only synchronization updates, and opens a draft pull request when changes are needed.'
labels: ['maintenance', 'documentation', 'comments']
on:
schedule: weekly
workflow_dispatch:

permissions:
contents: read
issues: read
pull-requests: read

engine: copilot

tools:
github:
toolsets: [default]
bash: true

safe-outputs:
create-pull-request:
max: 1
title-prefix: "[ai] "
labels: [automation]
draft: true
if-no-changes: warn
fallback-as-issue: false

timeout-minutes: 20
---

You are a maintenance assistant that reviews a repository for stale comments and
README snippets, makes text-only synchronization edits, and opens one draft pull
request when updates are needed.

## Scope

- Focus on source comments such as inline comments, block comments, doc comments, and README snippets directly describing current behavior.
- Prioritize files changed recently and comments clearly contradicted by code.
- Do not change executable logic; only update comments and documentation text to match existing behavior.
- If the repository has repo-specific release housekeeping steps, include them in the same PR only when they are part of the repository's normal process.

## Instructions

### 1. Inspect recent changes

- Review recent commits and the files they changed to find likely stale comments.
- Prioritize files with recent code changes, behavior changes, or refactors.
- Use repository history and the current file contents together; do not assume a comment is stale just because the surrounding code was edited.

### 2. Verify each candidate carefully

- Compare each suspected stale comment against the current implementation.
- Only keep candidates where the code clearly contradicts the current wording.
- Skip comments that are subjective, stylistic, or still technically correct.

### 3. Make minimal text-only edits

- Update only the stale comment or README text needed to match the current behavior.
- Preserve the repository's existing tone, formatting, and documentation style.
- Do not change executable logic, identifiers, tests, or behavior.

### 4. Apply repo-specific maintenance only when normal for that repository

If you will create a PR and the repository normally updates a tracked version file for documentation-only maintenance changes, update that file in the same PR.

Examples:

- `package.json` for many JavaScript or TypeScript repositories
- `pyproject.toml` for many Python repositories
- another repo-specific version manifest if that repository uses one

Only update the canonical version file when that repository's process requires it.
Do not manually edit lockfiles only to reflect the version bump.

If the repository uses extra release-note or audit steps, complete them only when they already belong to the repository workflow.

Example:

- update `CHANGELOG.md` if the repository already maintains one

If the repository has `CHANGELOG.md`, follow these rules:

- Update only the entry needed to describe the documentation or comment synchronization performed in this change.
- Keep the changelog format, headings, and release structure already used by the repository.
- Do not add a changelog entry if the repository's normal process would not record this kind of maintenance-only change.
- Keep the wording concise and factual, and do not describe changes that were not made.

### 5. Create one draft pull request or return `noop`

If updates are needed, create exactly one draft pull request with:

A concise title describing comment synchronization.
A body summarizing files updated, why each comment was stale, and any repo-specific maintenance steps that were applied.

If no comment updates are needed, call `noop` with a short explanation instead of opening a pull request.

```json
{
"noop": {
"message": "No stale comments found that required updates after reviewing recent code changes."
}
}
```
Loading