You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Contributor conventions for this repo live in [`CONTRIBUTING.md`](./CONTRIBUTING
4
4
5
5
Failure modes that most often trip agents here:
6
6
7
-
-**Forgetting `pnpm changeset`.** Pull requests that touch `codemods/`need a changeset covering each changed package (or the `skip-changeset` label). CI enforces this. See _Adding a changeset_ in `CONTRIBUTING.md`.
7
+
-**Forgetting `pnpm changeset`.** Pull requests that touch `codemods/`should include a changeset covering each changed package (or the `skip-changeset` label). CI warns but does not fail when changesets are missing. See _Adding a changeset_ in `CONTRIBUTING.md`.
8
8
-**Editing `version` in `codemod.yaml` by hand.** The `version` field in `codemod.yaml` is synced automatically from `package.json` by `scripts/sync-codemod-versions.sh` when `pnpm run version-packages` runs. Only edit `version` in `package.json` (via changesets). See _Release workflow_ in `CONTRIBUTING.md`.
9
9
-**Skipping local checks.** Run `pnpm run format`, `pnpm run lint`, and `pnpm run ci` before you call the task done. See _Development setup_ and _CI_ in `CONTRIBUTING.md`.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ Three workflows run on every PR and push to `main`:
65
65
66
66
-**`ci.yml` — Pull request checks:** oxfmt / oxlint and docs-link checks on changed files; `pnpm test` and `pnpm run check-types` only for codemod packages touched by the diff.
67
67
-**`ci.yml` — Full workspace (main):** on every push to `main`, runs full `pnpm run ci` (all tests + typechecks) and `pnpm run docs:links`.
68
-
-**`ci.yml` — Changeset check:**enforces that every PR touching `codemods/`includes a changeset for each changed package (or has the `skip-changeset` label).
68
+
-**`ci.yml` — Changeset check:**warns when a PR touching `codemods/`is missing a changeset for a changed package (or use the `skip-changeset` label to silence the warning).
69
69
70
70
Match the local checks (`pnpm run ci`) before you push.
0 commit comments