- Add issue templates for agents, packs, features, bugs, infra, and docs - Add labels.yml with BlackRoad OS standard labels (team, type, prio, status) - Add PR template with atomic commit guidelines - Add CONTRIBUTING.md with development guidelines - Add docs/REPOSITORY_ROLE.md documenting this repo's ecosystem role - Update README.md with badges, ecosystem links, and comprehensive docs Co-authored-by: blackboxprogramming <118287761+blackboxprogramming@users.noreply.github.com>
78 lines
2.0 KiB
YAML
78 lines
2.0 KiB
YAML
name: Infrastructure Issue
|
|
description: Report an infrastructure, deployment, or DevOps issue
|
|
title: "[INFRA] "
|
|
labels: ["type:infra", "team:prism", "team:infra", "status:ready"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
## Infrastructure Issue Template
|
|
Use this template for infrastructure, deployment, CI/CD, or DevOps issues.
|
|
|
|
- type: dropdown
|
|
id: priority
|
|
attributes:
|
|
label: Priority
|
|
description: What is the priority of this issue?
|
|
options:
|
|
- prio:P0
|
|
- prio:P1
|
|
- prio:P2
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: infra-type
|
|
attributes:
|
|
label: Infrastructure Type
|
|
description: What type of infrastructure issue is this?
|
|
options:
|
|
- Railway Deployment
|
|
- Cloudflare DNS/CDN
|
|
- GitHub Actions CI
|
|
- Docker/Container
|
|
- Domain Configuration
|
|
- Other
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: Describe the infrastructure issue
|
|
placeholder: "Railway deployment fails during build step..."
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: affected-envs
|
|
attributes:
|
|
label: Affected Environments
|
|
description: Which environments are affected?
|
|
placeholder: |
|
|
- Production (Railway)
|
|
- Staging
|
|
- Local development
|
|
validations:
|
|
required: false
|
|
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Error Logs
|
|
description: Paste any relevant deployment or error logs
|
|
placeholder: "Build logs, error messages..."
|
|
render: shell
|
|
validations:
|
|
required: false
|
|
|
|
- type: textarea
|
|
id: context
|
|
attributes:
|
|
label: Additional Context
|
|
description: Any other relevant information (configs, screenshots, etc.)
|
|
placeholder: "Configuration files, screenshots, related issues..."
|
|
validations:
|
|
required: false
|