Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .changeset/changelog-formatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ async function getReleaseLine(changeset, type, options) {
commit: changeset.commit,
});

// getInfo returns pre-formatted markdown links
// Format: [#PR](link) [`hash`](link)
const prLink = info.pull ? `[#${info.pull}](${info.links.pull})` : null;
const commitLink = info.commit ? `[\`${info.commit.slice(0, 7)}\`](${info.links.commit})` : null;
const prLink = info.links.pull;
const commitLink = info.links.commit;

const linkParts = [prLink, commitLink].filter(Boolean);
if (linkParts.length > 0) {
Expand Down
8 changes: 4 additions & 4 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

### Changed

- Add instructions to AGENTS.md to avoid accidentally reprocessing agent-created activities ([#10]([#10](https://github.com/plotday/plot/pull/10)))
- improved changelog format ([#9]([#9](https://github.com/plotday/plot/pull/9)))
- Generate a plotAgentId on "plot agent generate" if none specified ([#10]([#10](https://github.com/plotday/plot/pull/10)))
- Add instructions to AGENTS.md to avoid accidentally reprocessing agent-created activities ([#10](https://github.com/plotday/plot/pull/10) [`6dc8403`](https://github.com/plotday/plot/commit/6dc8403))
- improved changelog format ([#9](https://github.com/plotday/plot/pull/9) [`ceecf33`](https://github.com/plotday/plot/commit/ceecf33))
- Generate a plotAgentId on "plot agent generate" if none specified ([#10](https://github.com/plotday/plot/pull/10) [`6dc8403`](https://github.com/plotday/plot/commit/6dc8403))

### Fixed

- Set displayName on plot agent generate ([#10]([#10](https://github.com/plotday/plot/pull/10)))
- Set displayName on plot agent generate ([#10](https://github.com/plotday/plot/pull/10) [`6dc8403`](https://github.com/plotday/plot/commit/6dc8403))

## 0.11.0

Expand Down
2 changes: 1 addition & 1 deletion tools/google-calendar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Changed

- improved changelog format ([#9]([#9](https://github.com/plotday/plot/pull/9)))
- improved changelog format ([#9](https://github.com/plotday/plot/pull/9) [`ceecf33`](https://github.com/plotday/plot/commit/ceecf33))
- Updated dependencies:
- @plotday/sdk@0.11.1

Expand Down
2 changes: 1 addition & 1 deletion tools/google-contacts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Changed

- improved changelog format ([#9]([#9](https://github.com/plotday/plot/pull/9)))
- improved changelog format ([#9](https://github.com/plotday/plot/pull/9) [`ceecf33`](https://github.com/plotday/plot/commit/ceecf33))
- Updated dependencies:
- @plotday/sdk@0.11.1

Expand Down
2 changes: 1 addition & 1 deletion tools/outlook-calendar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Changed

- improved changelog format ([#9]([#9](https://github.com/plotday/plot/pull/9)))
- improved changelog format ([#9](https://github.com/plotday/plot/pull/9) [`ceecf33`](https://github.com/plotday/plot/commit/ceecf33))
- Updated dependencies:
- @plotday/sdk@0.11.1

Expand Down
Loading