Add VersionMark integration for tool version tracking in build documentation#108
Merged
Malcolmnixon merged 4 commits intomainfrom Feb 15, 2026
Merged
Conversation
- Add .versionmark.yaml configuration file with tool definitions - Add VersionMark tool to .config/dotnet-tools.json - Update build.yaml workflow to capture tool versions in all jobs: - quality-checks: capture dotnet, git, versionmark - build: capture dotnet, git, dotnet-sonarscanner, versionmark - integration-test: capture dotnet, git, versionmark - build-docs: capture all tools and publish versions report - Add versions.md to build notes definition for inclusion in PDF - Follow BuildMark pattern for self-version handling (--global flag for ReqStream) This brings ReqStream into consistency with TemplateDotNetTool template and enables comprehensive tool version tracking in build documentation.
Copilot
AI
changed the title
[WIP] Update Build Notes PDF with VersionMark tool version
Add VersionMark integration for tool version tracking in build documentation
Feb 15, 2026
Malcolmnixon
approved these changes
Feb 15, 2026
Contributor
|
@copilot This is building well, but I think some of the names of the artifacts may want to be updated "documentation" vs "documents. Please run the repo consistency agent to check for consistencies such as this. |
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Contributor
Author
Fixed in commit 0e31244. Changed artifact name from "documentation" to "documents" on line 547 to align with TemplateDotNetTool template naming convention. |
Contributor
|
@copilot Did you check other jobs such as those in release.yaml for impact to the artifact renaming? |
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Contributor
Author
Malcolmnixon
approved these changes
Feb 15, 2026
This was referenced Feb 20, 2026
This was referenced Feb 23, 2026
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.
Pull Request
Description
Integrates VersionMark to capture and document tool versions used during builds. Adds comprehensive version tracking across all build jobs (quality-checks, build, integration-test, build-docs) with consolidated reporting in Build Notes PDF. Follows BuildMark pattern for self-version querying using
--globalflag.Key Changes:
.versionmark.yaml: Defines version capture for system tools (dotnet, git, node, npm), document generators (pandoc, weasyprint), quality tools (sonarscanner, sarifmark, sonarmark), and DEMA tools (reqstream, buildmark, versionmark). ReqStream usesdotnet tool list --globalfor self-version handling since it's installed globally in integration and build-docs jobs..config/dotnet-tools.json: Added VersionMark 0.1.0 to project tooling..github/workflows/build.yaml: Added version capture to all jobs with unique job IDs (quality, build-win, build-ubuntu, int-win-8, int-ubuntu-9, etc.). Build-docs job aggregates all captures and publishes todocs/buildnotes/versions.md. Updated artifact name from "documentation" to "documents" for consistency with TemplateDotNetTool template..github/workflows/release.yaml: Updated artifact download name from "documentation" to "documents" to match build.yaml changes.docs/buildnotes/definition.yaml: Includesversions.mdin Build Notes PDF inputs.Type of Change
Related Issues
Pre-Submission Checklist
Before submitting this pull request, ensure you have completed the following:
Build and Test
dotnet build --configuration Releasedotnet test --configuration ReleaseCode Quality
dotnet format --verify-no-changesQuality Checks
Please run the following checks before submitting:
cspell "**/*.{md,cs}"markdownlint "**/*.md"yamllint '**/*.{yml,yaml}'Testing
Documentation
Additional Notes
Configuration-only changes. No code modifications. Tool versions will be captured during CI/CD and included in Build Notes PDF for traceability and reproducibility. Artifact naming standardized across all workflows to align with TemplateDotNetTool template conventions.
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.