-
Notifications
You must be signed in to change notification settings - Fork 0
C1 drift: re-sync unprotected template-tracked files #100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
8a0dac8
Re-sync unprotected template-tracked files to canonical (C1 drift)
Chris-Wolfgang d648dbe
Fill {{PROJECT_NAME}} placeholder in CONTRIBUTING.md (ETL-Test-Kit)
Chris-Wolfgang 9fa609d
Correct CONTRIBUTING.md project name to Wolfgang.Etl.TestKit
Chris-Wolfgang c9f1cbb
Propagate setup.ps1 UTF-8/newline fix from canonical
Chris-Wolfgang 7ae4cd6
Add canonical test/benchmark project config (Phase-0 files)
Chris-Wolfgang e2dccc7
Drop tests/Directory.Build.props — hold test projects to the warning bar
Chris-Wolfgang 927ae45
Fix CS8603 in TrackingEnumerator test double
Chris-Wolfgang b875e46
Add github-actions ecosystem to Dependabot (CI2)
Chris-Wolfgang 621af55
Add CHANGELOG.md (D3)
Chris-Wolfgang c570511
Address PR review round 2 (canonical-unprotected)
Chris-Wolfgang 01060a3
Drop vestigial one-time setup scripts (post-bootstrap cleanup)
Chris-Wolfgang 353d160
CONTRIBUTING.md: correct format.ps1 and README-FORMATTING.md paths
Chris-Wolfgang 6c9b6a2
scripts/format.ps1: work from repo root + correct usage examples
Chris-Wolfgang 9933377
CONTRIBUTING.md: correct AsyncFixer description (ConfigureAwait is MA…
Chris-Wolfgang a0865dc
Fix-BranchRuleset.ps1: normalize Repository before gh api calls
Chris-Wolfgang b391976
scripts/build-pr.ps1: align local checks with CI semantics
Chris-Wolfgang 1c98be3
CONTRIBUTING.md: bump prerequisite SDK to 10.0 to match repo TFMs
Chris-Wolfgang 44707a9
scripts/Validate-DocsDeploy.sh: rmdir mktemp path before worktree add
Chris-Wolfgang adbeb63
Setup-Labels.ps1: restore early -Repository format validation
Chris-Wolfgang bfc1481
scripts/build-pr.ps1: drop -UseBasicParsing from Invoke-WebRequest
Chris-Wolfgang f9784e7
Remove subtree TreatWarningsAsErrors=false overrides
Chris-Wolfgang a9571fb
Validate-DocsDeploy.sh: handle SSH remote URLs in REPO_NAME parsing
Chris-Wolfgang 292b3e1
build-pr.ps1: ensure .NET global-tools dir is on PATH after install
Chris-Wolfgang e229701
scripts: repair Setup-Labels.ps1 param block + drop --paginate on rul…
Chris-Wolfgang 6f9ddc6
C4: drop stale <AssemblyVersion> from src csproj(s)
Chris-Wolfgang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| name: "✨ Maintenance task" | ||
| description: "Track an actionable improvement under the Maintenance framework (security, performance, testing, cleanup, docs, API, or CI/CD)." | ||
| title: "[Maintenance] <category>: <short description>" | ||
| labels: [maintenance-task] | ||
| assignees: [] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| ## Maintenance framework sub-issue | ||
| This template creates a **`maintenance-task`** sub-issue under this repo's parent `Maintenance: <repo>` issue. The new issue will auto-appear in the cross-repo Maintenance project board (URL listed in the parent `Maintenance: <repo>` issue body). | ||
| - Pick exactly **one** category in the dropdown below. The corresponding `maintenance - <category>` label will need to be added manually after creation (issue forms don't yet support dynamic label addition). | ||
| - Fill in **Scope** (what's done & why), **Acceptance** (when do we close this?), and **Links** (PRs, scan output, related issues). | ||
| - If you're closing this issue via a PR, include `Fixes #<this-issue-number>` in the PR body so the auto-add workflow marks the project item as Done. | ||
| - type: dropdown | ||
| id: category | ||
| attributes: | ||
| label: Category | ||
| description: "Pick exactly one. After creation, also add the corresponding `maintenance - <category>` label." | ||
| options: | ||
| - "security — scans, finding fixes, dependency vulnerability audit" | ||
| - "performance — profile, benchmark, optimize, validate gains" | ||
| - "testing — coverage, integration/smoke/mutation tests, fixtures" | ||
| - "cleanup — refactor for reuse / quality / efficiency" | ||
| - "docs — XML doc coverage, README, CHANGELOG, samples" | ||
| - "API — public/internal surface audit, breaking-change vigilance" | ||
| - "CI/CD — Docker, CI workflow, build/publish pipeline" | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: scope | ||
| attributes: | ||
| label: Scope | ||
| description: "What needs to be done? What's the motivation?" | ||
| placeholder: | | ||
| e.g. | ||
| - Profile the hot path in `Extractor.ExtractAsync` and identify the dominant allocations. | ||
| - Goal: reduce per-record allocations to enable streaming larger inputs. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: acceptance | ||
| attributes: | ||
| label: Acceptance criteria | ||
| description: "When do we close this issue? Concrete observable outcomes." | ||
| placeholder: | | ||
| e.g. | ||
| - Benchmark X shows <50% of current allocations. | ||
| - No regression in existing benchmark suite (>5%). | ||
| - Updated benchmark numbers committed. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: links | ||
| attributes: | ||
| label: Links | ||
| description: "Related PRs, scan output, prior issues, external references." | ||
| placeholder: | | ||
| - Related PR: #... | ||
| - Scan output: ... | ||
| - Related issue: #... | ||
| validations: | ||
| required: false | ||
|
|
||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| --- | ||
| 💡 **Tip for agents (Copilot etc.):** When opening a maintenance-task sub-issue, use this template and pick the matching category. After creation, add the `maintenance - <category>` label manually. See `.github/copilot-instructions.md` for the full Maintenance framework convention. | ||
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # Changelog | ||
|
|
||
| All notable changes to this project will be documented in this file. | ||
|
|
||
| The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
| and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
|
||
| ## [Unreleased] | ||
|
|
||
| ### Added | ||
|
|
||
| ### Changed | ||
|
|
||
| ### Deprecated | ||
|
|
||
| ### Removed | ||
|
|
||
| ### Fixed | ||
|
|
||
| ### Security |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.