-
Notifications
You must be signed in to change notification settings - Fork 0
C1 drift: re-sync unprotected template-tracked files #150
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 3 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
d338b93
Re-sync unprotected template-tracked files to canonical (C1 drift)
Chris-Wolfgang d0c9303
Fill {{PROJECT_NAME}} placeholder in CONTRIBUTING.md (Wolfgang.TryPat…
Chris-Wolfgang f8ebf2f
Propagate setup.ps1 UTF-8/newline fix from canonical
Chris-Wolfgang 4de6fbb
Add canonical test/benchmark project config (Phase-0 files)
Chris-Wolfgang 1b64176
Drop tests/Directory.Build.props — hold test projects to the warning bar
Chris-Wolfgang a19533b
Add github-actions ecosystem to Dependabot (CI2)
Chris-Wolfgang e6ee5cb
Move stray docs files under docfx_project/docs/ (D7)
Chris-Wolfgang bd89ef8
Add CHANGELOG.md (D3)
Chris-Wolfgang 00ad787
Switch benchmarks entry point to BenchmarkSwitcher (P2)
Chris-Wolfgang 26555bf
Address PR review round 2 (canonical-unprotected)
Chris-Wolfgang 943b1ca
Drop vestigial one-time setup scripts (post-bootstrap cleanup)
Chris-Wolfgang ca4c2a0
CONTRIBUTING.md: correct format.ps1 and README-FORMATTING.md paths
Chris-Wolfgang 1c143d8
scripts/format.ps1: work from repo root + correct usage examples
Chris-Wolfgang c37ec19
CONTRIBUTING.md: correct AsyncFixer description (ConfigureAwait is MA…
Chris-Wolfgang 1cdcb11
Fix-BranchRuleset.ps1: normalize Repository before gh api calls
Chris-Wolfgang 37a8885
CONTRIBUTING.md: bump prerequisite SDK to 10.0 to match repo TFMs
Chris-Wolfgang 3f7927f
scripts/Validate-DocsDeploy.sh: rmdir mktemp path before worktree add
Chris-Wolfgang 3bf791f
Setup-Labels.ps1: restore early -Repository format validation
Chris-Wolfgang 9563591
scripts/build-pr.ps1: drop -UseBasicParsing from Invoke-WebRequest
Chris-Wolfgang 4fb38d1
Remove subtree TreatWarningsAsErrors=false overrides
Chris-Wolfgang bce9b4e
Validate-DocsDeploy.sh: handle SSH remote URLs in REPO_NAME parsing
Chris-Wolfgang c14db4d
build-pr.ps1: ensure .NET global-tools dir is on PATH after install
Chris-Wolfgang 037ded8
scripts: repair Setup-Labels.ps1 param block + drop --paginate on rul…
Chris-Wolfgang 0b0fd33
C4: drop stale <AssemblyVersion> from src csproj(s)
Chris-Wolfgang 3548b62
CI1: add <RepositoryUrl> to 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
| 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
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
Oops, something went wrong.
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.