Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions .github/ISSUE_TEMPLATE/operations_task.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: "🛠️ Operations Task"
description: Track repository and platform work not related to module functionality (CI/CD, docs publishing, GitHub Pages, automation).
labels: [chore]
body:
- type: markdown
attributes:
value: |
Use this template for operational or repository tasks, such as CI/CD maintenance, documentation publishing, GitHub Pages, and workflow automation.
Do not use this template for CosmosDB module behavior or API functionality changes.
- type: dropdown
id: area
attributes:
label: Operational Area
description: Which area does this task belong to?
options:
- CI/CD pipeline
- GitHub Actions workflows
- Release process
- Documentation publishing
- GitHub Pages/site
- Repository automation/tooling
- Dependency management
- Security/compliance
- Other
validations:
required: true
- type: textarea
id: summary
attributes:
label: Task Summary
description: Describe the operational task to be completed.
placeholder: e.g. Add docs publishing workflow for tagged releases.
validations:
required: true
- type: textarea
id: outcome
attributes:
label: Desired Outcome
description: What should be true when this task is done?
placeholder: e.g. Docs are automatically published to GitHub Pages on release.
validations:
required: true
- type: textarea
id: scope
attributes:
label: Scope and Boundaries
description: What is in scope and out of scope for this task?
placeholder: |
In scope:
-
Out of scope:
-
validations:
required: false
- type: textarea
id: dependencies
attributes:
label: Dependencies / Prerequisites
description: List related issues, PRs, secrets, environments, or approvals needed.
validations:
required: false
- type: checkboxes
id: confirmation
attributes:
label: Confirmation
options:
- label: This issue is for repository and operations work and not for module functionality changes.
required: true
- type: textarea
id: additional
attributes:
label: Additional Context
description: Add any extra details, links, or screenshots.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Added `AGENTS.md` and `copilot-instructions.md` to optimize the
repository for Agentic development.
- Added `.github/ISSUE_TEMPLATE/operations_task.yml` issue template for
repository operations work such as CI/CD, docs publishing, and
GitHub Pages tasks.
- Removed testing on Windows Server 2019 and MacOS 13.
- Added [Spec-Kit](github.com/GitHub/spec-kit) support.
- Added `specify/memory/constitution.md` to define the module's
governing principles and development standards.
- Added `Configuration` to `RequiredModules.psd1` to satisfy
`ModuleBuilder` required module loading in newer releases.

### Changes

Expand Down
1 change: 1 addition & 0 deletions RequiredModules.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
Plaster = 'latest'
Platyps = 'latest'
ModuleBuilder = 'latest'
Configuration = 'latest'
ChangelogManagement = 'latest'
Sampler = 'latest'
'Sampler.GitHubTasks' = 'latest'
Expand Down
Loading