Add weekly comment sync workflow

This commit is contained in:
Yauhen Habrusevich
2026-04-15 14:58:57 +02:00
parent 1565493324
commit 15b1f9f8f9
2 changed files with 106 additions and 0 deletions

View File

@@ -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."
}
}
```