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
11 changes: 11 additions & 0 deletions devlog/2026-08-13_pr-artifact-version-display/REQ.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# REQ — PR Artifact Version Display

## Problem
PR #298's bot comment showed the npm tag (`pr-298`) but not the actual published version number. Users couldn't verify which version corresponds to the current PR state on npm.

## Fix
Pass the published version from the npm publish step to the PR comment step via GITHUB_OUTPUT. The comment now shows:
```
**Published:** `opencode-acp@1.14.16-pr.298.5`
Current version: `1.14.16-pr.298.5` (npm tag `pr-298`)
```
4 changes: 4 additions & 0 deletions devlog/2026-08-13_pr-artifact-version-display/WORKLOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# WORKLOG — PR Artifact Version Display

## Changes
- `.github/workflows/pr-artifact.yml`: Added `id: npm-publish` + `GITHUB_OUTPUT` outputs (`version`, `npm_tag`). Comment step reads `${{ steps.npm-publish.outputs.version }}` and displays it.
Loading