This file is the working reference for future GitHub-related tasks in this repository.
- Owner:
ATAC-Helicopter - Repo:
Blueprints - Remote:
origin - URL:
https://github.com/ATAC-Helicopter/Blueprints - Default branch:
main - Visibility:
public - License:
MIT
main: stable branch for pushed, verified repository statedevelop: integration branch for active work before promotion tomainfeature/<number>-<slug>: feature or implementation work tied to a GitHub issuechore/<number>-<slug>: repository/process/infrastructure work tied to a GitHub issue
Current managed branches:
maindevelopfeature/7-workspace-persistencefeature/8-dpapi-key-storagefeature/10-shared-folder-syncfeature/11-avalonia-live-workspacechore/9-public-release-readiness
Default workflow:
- branch from
developfor active work - merge feature or chore branches into
develop - promote
developintomainonce the state is intentionally ready
- Issues: enabled
- Projects: enabled
- Wiki: disabled
- Discussions: disabled
- Auto-merge: enabled
- Merge commits: disabled
- Squash merge: enabled
- Rebase merge: enabled
- Delete branch on merge: enabled
Protected branches:
maindevelop
Current protection baseline on protected branches:
- required status check:
build-and-test - branch must be up to date before merge
- 1 approving review required
- stale reviews dismissed on new pushes
- conversation resolution required
- linear history required
- force pushes disabled
- branch deletion disabled
- admin bypass remains allowed for now
dotnetavaloniadesktop-apprelease-planninglocal-firstoffline-collaborationcryptography
Default labels exist, plus these project labels:
appcorestoragecollaborationsecurityplanningneeds-triagebreaking-change
v0.1.0 Foundationv1.0.0
- GitHub Project:
Blueprints Roadmap
- Current pre-release tag:
v0.1.0-alpha.1 - A draft prerelease already exists for that tag
Run these before pushing or preparing release-related changes:
dotnet build Blueprints.sln
dotnet test Blueprints.sln
git status --shortInitialize and inspect:
git status --short
git branch --show-current
git remote -v
git log --oneline --decorate -n 10Commit and push:
git add .
git commit -m "Describe the change"
git push origin mainCreate and push a tag:
git tag -a v0.1.0-alpha.2 -m "Describe the milestone"
git push origin v0.1.0-alpha.2Check auth and repo:
gh auth status
gh repo view ATAC-Helicopter/BlueprintsInspect labels and milestones:
gh label list --repo ATAC-Helicopter/Blueprints
gh api repos/ATAC-Helicopter/Blueprints/milestonesCreate a label:
gh label create my-label --repo ATAC-Helicopter/Blueprints --color 1D76DB --description "Short description"Create a milestone:
gh api repos/ATAC-Helicopter/Blueprints/milestones -f title="v0.2.0" -f state="open" -f description="Milestone description"Create a release:
gh release create v0.1.0-alpha.2 --repo ATAC-Helicopter/Blueprints --title "v0.1.0-alpha.2" --notes "Release notes here" --draft --prereleaseEdit repo settings:
gh repo edit ATAC-Helicopter/Blueprints --description "Repository description"For public maintenance:
- confirm the current license still matches project intent
- review
README.md - review
SECURITY.md - confirm issue and PR templates are correct
- confirm CI is green
- confirm no sensitive data or secrets were committed
- review topics, labels, milestones, and release notes
- decide whether Discussions should stay disabled
- review whether admin bypass should remain allowed
Unless there is a strong reason otherwise:
- prefer draft prereleases before publishing anything final
- keep merge commits disabled
- use squash or rebase merge only
- treat security-related changes conservatively
Use this section every time GitHub-related work is requested.
Check:
git status --short- current branch
- whether local
mainanddevelopare up to date - whether there are unpushed commits
- whether there are uncommitted changes that should not be mixed into repo admin work
Update if needed:
- pull latest
main - rebase local work before pushing
- commit repo-management files separately from product/code changes when possible
Check:
- current managed branches still match the roadmap
- old feature branches that can be deleted
- stale remote-tracking refs
- accidental or noisy branches from bots
Update if needed:
- create missing managed branches
- delete stale local branches
- delete stale remote branches that are no longer needed
- prune remote-tracking refs with
git fetch --prune origin
Check:
- open PR list
- whether any PR is stale, redundant, or superseded
- CI status on each open PR
- labels, milestones, assignees, and project linkage
- whether Dependabot PRs overlap or conflict
Update if needed:
- merge safe maintenance PRs after checks pass
- close redundant PRs with a clear reason
- rebase or refresh PRs if required
- ensure important PRs are attached to the right milestone/project
Check:
- whether active work has a corresponding GitHub issue
- whether issues are labeled correctly
- whether milestone assignment is missing
- whether roadmap issues still reflect actual priorities
- whether closed work should also close matching issues
Update if needed:
- create missing issues
- add or correct labels
- assign milestones
- add issues to the project board
- close or rewrite outdated issues
Check:
- project exists and is linked to the repo
- roadmap items are actually present in the project
- items reflect current priorities
- project is missing newly created issues or PRs
Update if needed:
- add newly created issues/PRs
- remove obsolete items
- keep milestone and project intent aligned
Check:
- whether labels still match the repo workflow
- whether any new work area needs a label
- whether default labels are enough for triage
- whether noisy or unused labels should be retired
Update if needed:
- add missing labels
- rename or recolor labels only if it improves clarity
- keep security/planning/core/app/storage/collaboration labels available
Check:
- whether new planned work belongs to an existing milestone
- whether milestone descriptions still match the scope
- whether completed milestones should be closed
Update if needed:
- create new milestones
- update milestone descriptions
- move issues/PRs into the correct milestone
- close milestones when complete
Check:
- latest tags
- whether draft releases match actual tags
- whether prerelease naming is still consistent
- whether a new tag is needed after meaningful milestones
Update if needed:
- create annotated tags
- push tags
- create or update draft prereleases
- publish releases only when intentionally ready
Check:
- description
- topics
- merge strategy settings
- issue/project/wiki/discussions state
- default branch
- visibility
Update if needed:
- keep description accurate
- keep topics relevant
- keep merge commits disabled unless there is a specific reason
- review settings before public launch
Check:
- workflow files still reflect the intended build/test process
- latest workflow runs are passing
- action versions are current enough
- CI is triggered on the intended branches and PRs
Update if needed:
- fix failing workflows quickly
- update action versions
- keep workflows minimal and deterministic
- avoid adding workflows without a clear maintenance owner
Check:
- whether grouped update behavior is still working
- whether there is PR spam again
- whether dependency PRs are stale or redundant
- whether update cadence is too noisy or too slow
Update if needed:
- adjust grouping rules
- adjust update intervals
- close superseded dependency PRs
- keep GitHub Actions and NuGet updates manageable
Check:
- issue templates
- PR template
README.mdCONTRIBUTING.mdSECURITY.mdCODE_OF_CONDUCT.mdGitHubOpsReference.md
Update if needed:
- keep templates aligned with the current workflow
- keep docs aligned with repo state
- update security guidance when reporting flow changes
- update this reference whenever repo operations materially change
Check:
- license status
- public-facing README quality
- no sensitive data in repo history
- security policy is sensible
- branch protection availability
- release quality and naming
Update if needed:
- add a license before public release
- clean up docs and onboarding
- verify there are no secrets or unsafe artifacts
- apply branch protection once available
Check:
- whether
mainanddevelopare still protected - whether required checks still match the actual CI workflow names
- whether review requirements are still appropriate for the maintainer model
- whether admin bypass should remain enabled
Update if needed:
- adjust branch protection when CI names change
- tighten admin enforcement only when maintainer coverage makes it safe
- avoid deadlocking the repo with protection rules that nobody can satisfy
Always do:
- verify
git status --short - push any intended local repo-management commits
- confirm resulting GitHub state with
gh - update
GitHubOpsReference.mdif conventions changed - avoid leaving the repo in a half-configured state
This file should be updated whenever repository settings, release conventions, labels, milestones, or GitHub workflows materially change.