Implement repository information fetching infrastructure#3
Merged
Malcolmnixon merged 5 commits intomainfrom Jan 29, 2026
Merged
Implement repository information fetching infrastructure#3Malcolmnixon merged 5 commits intomainfrom
Malcolmnixon merged 5 commits intomainfrom
Conversation
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add feature to fetch repository information
Implement repository information fetching infrastructure
Jan 29, 2026
Malcolmnixon
requested changes
Jan 29, 2026
src/DemaConsulting.BuildMark/RepoConnectors/RepoConnectorFactory.cs
Outdated
Show resolved
Hide resolved
… mock Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Malcolmnixon
approved these changes
Jan 29, 2026
21 tasks
Copilot AI
added a commit
that referenced
this pull request
Feb 6, 2026
- Add BuildMark_MarkdownReportGeneration test - Add BuildMark_GitIntegration test - Add BuildMark_IssueTracking test - Add BuildMark_KnownIssuesReporting test - Tests check for GitHub token and skip gracefully if not available - These tests satisfy requirements GH-1, GH-2, GH-3, RPT-001-009, PLT-001-005 - Tests run BuildMark on itself for self-validation
22 tasks
Malcolmnixon
added a commit
that referenced
this pull request
Feb 7, 2026
* Initial plan * Add self-validation integration tests for requirements traceability - Add BuildMark_MarkdownReportGeneration test - Add BuildMark_GitIntegration test - Add BuildMark_IssueTracking test - Add BuildMark_KnownIssuesReporting test - Tests check for GitHub token and skip gracefully if not available - These tests satisfy requirements GH-1, GH-2, GH-3, RPT-001-009, PLT-001-005 - Tests run BuildMark on itself for self-validation * Refactor: Extract GitHub token check to helper method - Add SkipIfNoGitHubToken() helper to reduce code duplication - All four self-validation tests now use the shared helper - Addresses code review feedback * docs: Fix spell checking issues - Add 'buildnotes' to cspell dictionary for docs/buildnotes/definition.yaml - Add 'myterm' as valid example term used in CONTRIBUTING.md - Add test-results directory to cspell ignore paths to exclude generated files * feat: Add internal constructor to GitHubGraphQLClient for testability Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com> * test: Add unit tests for GitHubGraphQLClient with mocked HttpClient Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com> * refactor: Remove conditional skip logic from BuildMark self-validation tests Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com> * Remove duplicate BuildMark_* tests from IntegrationTests.cs Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.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.
Pull Request
Description
Implements a provider-agnostic interface for fetching repository metadata (tags, pull requests, issues, git hashes) required for build note generation. Initial implementation supports GitHub via
gitandghCLI tools.Core Components
RunCommandAsyncfor testable CLI executionSecurity
All user inputs (tag names, issue/PR IDs) validated against allowlist patterns before CLI invocation:
^[a-zA-Z0-9._/-]+$^\d+$Example Usage
Type of Change
Related Issues
Pre-Submission Checklist
Build and Test
dotnet build --configuration Releasedotnet test --configuration ReleaseCode Quality
dotnet format --verify-no-changesQuality Checks
cspell "**/*.{md,cs}"markdownlint "**/*.md"yamllint '**/*.{yml,yaml}'Testing
Documentation
Additional Notes
RepoConnectors/subfolder for maintainabilitygitandghCLI tools are installed on systemOriginal prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.