ci: use apify/actions/pr-title-check wrapper for PR title checks#1986
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1986 +/- ##
=======================================
Coverage 93.01% 93.01%
=======================================
Files 167 167
Lines 11740 11740
=======================================
Hits 10920 10920
Misses 820 820
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
vdusek
approved these changes
Jun 23, 2026
Mantisus
pushed a commit
to Mantisus/crawlee-python
that referenced
this pull request
Jun 30, 2026
…fy#1986) ## What Replaces the direct `amannn/action-semantic-pull-request` usage in our PR-title workflow with the shared `apify/actions/pr-title-check@v1.3.0` wrapper. ## Why We're consolidating PR-title checking across the org behind a single wrapper action ([apify/actions/pr-title-check](https://github.com/apify/actions/tree/main/pr-title-check)). Benefits: - One place to pin/update the underlying action version (no more per-repo version drift — we currently have v4.5.0, v5.5.3, v6, v6.1.1 scattered across repos). - The wrapper also spell-checks the PR title via [`crate-ci/typos`](https://github.com/crate-ci/typos). ## Changes - Swapped the `amannn/action-semantic-pull-request@<version>` step for `apify/actions/pr-title-check@v1.3.0`. - Dropped the manual `GITHUB_TOKEN` env wiring; the wrapper defaults to `github.token`. ## Note This adds a PR-title spell-check that wasn't running before. The spell-checker reads a **`_typos.toml` that lives in this repository** — it's local to this repo, not a shared/org-wide config, so you have full control over it. If the check produces false positives, just add the offending words (or rules) to `_typos.toml` in this repo. If no `_typos.toml` is present, the [typos defaults](https://github.com/crate-ci/typos) apply.
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.
What
Replaces the direct
amannn/action-semantic-pull-requestusage in our PR-title workflow with the sharedapify/actions/pr-title-check@v1.3.0wrapper.Why
We're consolidating PR-title checking across the org behind a single wrapper action (apify/actions/pr-title-check). Benefits:
crate-ci/typos.Changes
amannn/action-semantic-pull-request@<version>step forapify/actions/pr-title-check@v1.3.0.GITHUB_TOKENenv wiring; the wrapper defaults togithub.token.Note
This adds a PR-title spell-check that wasn't running before. The spell-checker reads a
_typos.tomlthat lives in this repository — it's local to this repo, not a shared/org-wide config, so you have full control over it. If the check produces false positives, just add the offending words (or rules) to_typos.tomlin this repo. If no_typos.tomlis present, the typos defaults apply.