W-22382831 & W-22382821 feat: VSCode Release Draft workflow#28
Open
franciscoperezsammartino wants to merge 11 commits into
Open
W-22382831 & W-22382821 feat: VSCode Release Draft workflow#28franciscoperezsammartino wants to merge 11 commits into
franciscoperezsammartino wants to merge 11 commits into
Conversation
- Add .github/workflows/vscode-release.yml: weekly + manual dispatch workflow that finds new commits since the last release, computes a proposed version from lsp-server diff (even-minor convention), builds a CHANGELOG draft + VSIX, and opens a release-draft PR - Add packages/vscode/vsix-versions/ as the VSIX artifact directory - Add repository field to packages/vscode/package.json Closes W-22382827, W-22382831 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ad of git log Replaces the git log commit scrape with a per-package CHANGELOG.md reader. Each package uses changesets and squash-merges, so individual commits are not reliably visible on the default branch. Reading the package changelogs directly gives richer, more accurate content for the release draft. Packages tracked: lsp-server, lsp, language, compiler, parser, parser-javascript, parser-tree-sitter, agentforce, types, lsp-browser, dialect/agentscript, dialect/agentforce, dialect/agentfabric. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…a process.env Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…sion comparison Version comparison required changeset history that may not exist in all environments. Git diff on each package CHANGELOG.md between the release commit and HEAD is simpler and works universally. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…and git commits Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1. Upload VSIX as draft GitHub Release asset instead of committing to git 2. Add tree-sitter binary checksum verification after download 3. Add job-level timeout-minutes: 30 4. Pin runner to ubuntu-24.04 instead of ubuntu-latest 5. Use git pickaxe (-S) for faster release commit detection 6. Use ::notice:: annotation when nothing to release 7. Document even/odd minor versioning convention in comment Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.github/workflows/vscode-release.yml— weekly (Wednesday) + manual dispatch workflow that finds new commits since the last release, computes a proposed version from the lsp-server diff (even-minor convention), builds a CHANGELOG draft + VSIX, and opens a release-draft PRpackages/vscode/vsix-versions/directory (.gitkeep) as the target location for VSIX artifactsrepositoryfield topackages/vscode/package.jsonCloses W-22382827, W-22382831
Test plan
workflow_dispatchwithoverride_last_versionset to the current version to validate the end-to-end flowNotes
VSCE_PERSONAL_ACCESS_TOKEN,IDEE_OVSX_PAT) and the publish workflow will be added in a follow-up (W-22382824)🤖 Generated with Claude Code