feat: add copy proofread review workflow - #309
Merged
Merged
Conversation
stepskop
force-pushed
the
feat/copy-proofread-review
branch
3 times, most recently
from
August 4, 2026 12:51
9657c17 to
2d451b5
Compare
Reviews the public-facing copy changed in a PR against the style rules in an agent skill, checked out at runtime from apify/agent-skills-internal so callers do not vendor a copy that drifts. Callers pass the paths to review and, optionally, repo-specific rules for telling copy apart from code.
stepskop
force-pushed
the
feat/copy-proofread-review
branch
from
August 4, 2026 12:53
2d451b5 to
081fdc6
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a reusable GitHub Actions workflow that runs a Claude-based “copy proofread” review on demand (typically via a PR label), using style rules loaded at runtime from apify/agent-skills-internal.
Changes:
- Documented how to call the reusable workflow (including required secrets and optional repo-specific instructions).
- Added
.github/workflows/copy_proofread_review.yamlreusable workflow that installs theapify-proofreaderskill and runsanthropics/claude-code-actionto leave inline suggestions. - Added automatic cleanup behavior to remove the trigger label after the run completes.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| README.md | Adds caller-side usage documentation and an example configuration. |
| .github/workflows/copy_proofread_review.yaml | Introduces the reusable “copy proofread review” workflow and its steps/permissions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+169
to
+173
| # Removes whichever label triggered the caller, so the label reflects "not currently queued" and | ||
| # re-adding it re-runs the review — the deliberate re-request action. Runs regardless of the review | ||
| # outcome, and is skipped when the caller was triggered by something other than a label. | ||
| if: always() && github.event.label.name != '' | ||
| uses: actions/github-script@v9 |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
jirimoravcik
approved these changes
Aug 5, 2026
stepskop
pushed a commit
that referenced
this pull request
Aug 10, 2026
🤖 I have created a release *beep* *boop* --- ## [0.48.0](v0.47.0...v0.48.0) (2026-08-10) ### Features * add copy proofread review workflow ([#309](#309)) ([d8e7c26](d8e7c26)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.
Add copy proofread review from workflow. Original idea was to automate the public-facing copy review, that is done manually by a copywriter on a CODEOWNER review request.
On a label-triggered PR, it proofreads the public-facing copy in the given paths against Apify's style guide and leaves inline suggestions. It never approves or requests changes. The rules come from the
apify-proofreaderskill, sparse-checked-out at run time fromapify/agent-skills-internal, so no repo vendors a copy that drifts.Caller side:
The workflow removes whichever label triggered the caller, so re-adding it re-runs the review.
Test run: https://github.com/apify/apify-core/pull/29111