Add BuildMark build notes generation#106
Merged
Malcolmnixon merged 6 commits intomainfrom Feb 10, 2026
Merged
Conversation
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Implement BuildMark build notes following template
Add BuildMark build notes generation
Feb 10, 2026
Malcolmnixon
requested changes
Feb 10, 2026
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Malcolmnixon
requested changes
Feb 10, 2026
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Malcolmnixon
requested changes
Feb 10, 2026
| run: > | ||
| dotnet pandoc | ||
| --defaults docs/buildnotes/definition.yaml | ||
| --filter node_modules/.bin/mermaid-filter.cmd |
Contributor
There was a problem hiding this comment.
Where's the metadata lines - take a look at the other pandoc invocations when building documents.
Contributor
Author
There was a problem hiding this comment.
Added in commit dc90c63:
docs/buildnotes/title.txtas first argument--metadata version="${{ inputs.version }}"--metadata date="$(date +'%Y-%m-%d')"
Now matches the pattern used in all other Pandoc invocations (User Guide, Requirements, Trace Matrix, Justifications, Quality).
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Malcolmnixon
requested changes
Feb 10, 2026
|
|
||
| # Generated documentation | ||
| docs/*.html | ||
| docs/buildnotes/*.html |
Contributor
There was a problem hiding this comment.
What about the other temporary HTML files?
Contributor
Author
There was a problem hiding this comment.
Added in commit f82521a. Now includes gitignore patterns for all generated HTML files:
- docs/guide/*.html
- docs/requirements/*.html
- docs/tracematrix/*.html
- docs/justifications/*.html
- docs/quality/*.html
- docs/buildnotes/*.html
Matches the pattern used in ReqStream.
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Malcolmnixon
approved these changes
Feb 10, 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
Implements automated build notes generation using BuildMark, following the pattern established in ReqStream. BuildMark analyzes Git history and GitHub issues to generate structured release notes, with full HTML and PDF documentation generation.
Changes:
.config/dotnet-tools.json: Added BuildMark v0.2.0docs/buildnotes/: Created documentation structure with title, introduction, and Pandoc configuration.github/workflows/build.yaml:shell: bashwithcatfor consistencybuildnotes.mdand PDF artifact.github/workflows/release.yaml: Usesbuildnotes.mdas release body instead of GitHub's auto-generated notes.gitignore: Added comprehensive patterns for all generated documentation files:docs/buildnotes.md(plus existing patterns for requirements, tracematrix, justifications)docs/guide/*.html,docs/requirements/*.html,docs/tracematrix/*.html,docs/justifications/*.html,docs/quality/*.html,docs/buildnotes/*.htmldocs/*.pdfType 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
No changes to application code—workflow and documentation configuration only. The implementation includes the complete documentation generation pipeline (Markdown → HTML → PDF) with full consistency to existing documentation patterns. The Pandoc invocation includes title.txt, version metadata, and date metadata matching all other document generation steps (User Guide, Requirements, Trace Matrix, Justifications, Quality). All generated documentation artifacts (HTML, PDF, and generated markdown files) are properly added to
.gitignorefollowing the ReqStream pattern, ensuring all temporary HTML files in subdirectories are excluded from version control.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.