ci: guard changelog bot attributions

This commit is contained in:
Peter Steinberger
2026-04-27 14:28:05 +01:00
parent 6e8aaef1cc
commit bbbc80ddcc
7 changed files with 92 additions and 8 deletions

View File

@@ -258,6 +258,7 @@ describe("scripts/changed-lanes", () => {
});
expect(plan.commands.map((command) => command.name)).toEqual([
"conflict markers",
"changelog attributions",
"typecheck core tests",
"lint core",
"lint scripts",
@@ -544,6 +545,7 @@ describe("scripts/changed-lanes", () => {
});
expect(plan.commands.map((command) => command.args[0])).toEqual([
"check:no-conflict-markers",
"check:changelog-attributions",
"release-metadata:check",
"ios:version:check",
"config:schema:check",
@@ -674,6 +676,7 @@ describe("scripts/changed-lanes", () => {
});
expect(plan.commands).toEqual([
{ name: "conflict markers", args: ["check:no-conflict-markers"] },
{ name: "changelog attributions", args: ["check:changelog-attributions"] },
]);
});
@@ -684,6 +687,7 @@ describe("scripts/changed-lanes", () => {
expect(result.docsOnly).toBe(true);
expect(plan.commands).toEqual([
{ name: "conflict markers", args: ["check:no-conflict-markers"] },
{ name: "changelog attributions", args: ["check:changelog-attributions"] },
]);
});
});