From aeeff956add8c831d2fc4680357d3b4b34fa5aaf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Jun 2026 20:11:27 +0000 Subject: [PATCH 1/2] Initial plan From 9d7007bd00596eeddbb0e0f7b2a5f18219f42849 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Jun 2026 20:18:09 +0000 Subject: [PATCH 2/2] fix typos in changelog type docs and beachball change-file skill --- change/beachball-c431c165-ed07-4220-917b-e89d21ea4b1c.json | 7 +++++++ packages/beachball/src/types/ChangeLog.ts | 2 +- skills/beachball-change-file/SKILL.md | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 change/beachball-c431c165-ed07-4220-917b-e89d21ea4b1c.json diff --git a/change/beachball-c431c165-ed07-4220-917b-e89d21ea4b1c.json b/change/beachball-c431c165-ed07-4220-917b-e89d21ea4b1c.json new file mode 100644 index 000000000..eaf9eb43a --- /dev/null +++ b/change/beachball-c431c165-ed07-4220-917b-e89d21ea4b1c.json @@ -0,0 +1,7 @@ +{ + "packageName": "beachball", + "type": "none", + "dependentChangeType": "none", + "comment": "Fix spelling mistakes in changelog type docs and skill prerequisites.", + "email": "198982749+Copilot@users.noreply.github.com" +} diff --git a/packages/beachball/src/types/ChangeLog.ts b/packages/beachball/src/types/ChangeLog.ts index e10b4121e..8562a03f7 100644 --- a/packages/beachball/src/types/ChangeLog.ts +++ b/packages/beachball/src/types/ChangeLog.ts @@ -23,7 +23,7 @@ export interface ChangelogEntry { * For changelogs generated by beachball versions \>=2.36.0, should be `"not available"` for * bump entries, because the correct commit doesn't exist yet (see [issue](https://github.com/microsoft/beachball/issues/901)). * - * Could also be `"not available"` for other commits if there was an issue determing the hash + * Could also be `"not available"` for other commits if there was an issue determining the hash * at changelog generation time. * * Will be undefined if `options.change.includeCommitHashes` is false. diff --git a/skills/beachball-change-file/SKILL.md b/skills/beachball-change-file/SKILL.md index 665b0b70e..eaaed3208 100644 --- a/skills/beachball-change-file/SKILL.md +++ b/skills/beachball-change-file/SKILL.md @@ -2,7 +2,7 @@ name: beachball-change-file description: How to create a Beachball change file. ONLY use this skill when the user asks to generate change files, before pushing a branch, or before creating a PR. metadata: - version: 1.0.3 + version: 1.0.4 source: https://github.com/microsoft/beachball/blob/main/skills/beachball-change-file/SKILL.md --- @@ -12,7 +12,7 @@ Beachball normally uses a CLI with an interactive prompt to create change files, ## Prerequisites -- Deterine the root directory: this is almost always the git root, but the user might specify a different folder. (The root usually contains `beachball.config.*` or `.beachballrc.*` or has a `"beachball"` key in `package.json`.) +- Determine the root directory: this is almost always the git root, but the user might specify a different folder. (The root usually contains `beachball.config.*` or `.beachballrc.*` or has a `"beachball"` key in `package.json`.) - Determine the package manager for the repo (`npm`, `yarn`, `pnpm`). The example commands below assume `yarn`, but substitute the appropriate command runner syntax for a different package manager. - Check the root `package.json` `scripts` for scripts that run `beachball change` and `beachball check`. - The examples below assume `scripts` called `change` and `checkchange` respectively, but substitute the appropriate script names if found.