C++ / fmt (pull_request) Successful in 8s
JS/TS / fmt (pull_request) Successful in 14s
JS/TS / lint (pull_request) Successful in 22s
Python / lint (pull_request) Successful in 32s
Python / fmt (pull_request) Successful in 35s
Python / test (pull_request) Successful in 1m4s
Python / typecheck (pull_request) Failing after 1m3s
C++ / build (pull_request) Successful in 1m55s
Rust / build (pull_request) Successful in 1m54s
Rust / fmt (pull_request) Successful in 1m16s
Python / buildcheck (pull_request) Successful in 2m46s
Rust / clippy (pull_request) Successful in 2m40s
C++ / clang-tidy (pull_request) Successful in 5m36s
60 lines
1.2 KiB
YAML
60 lines
1.2 KiB
YAML
name: Pull Request
|
|
about: Submit changes
|
|
title: ""
|
|
labels: []
|
|
|
|
body:
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: What & why
|
|
placeholder: Describe the change and motivation
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: issue
|
|
attributes:
|
|
label: Related issue
|
|
placeholder: "#123"
|
|
validations:
|
|
required: false
|
|
|
|
- type: dropdown
|
|
id: type
|
|
attributes:
|
|
label: Type
|
|
options:
|
|
- Bug fix
|
|
- New feature
|
|
- Refactor / style
|
|
- CI / build / tooling
|
|
- Documentation
|
|
validations:
|
|
required: true
|
|
|
|
- type: checkboxes
|
|
id: tested
|
|
attributes:
|
|
label: Tested
|
|
options:
|
|
- label: Build succeeds
|
|
- label: Existing tests pass
|
|
- label: Manually verified
|
|
|
|
- type: textarea
|
|
id: breaking
|
|
attributes:
|
|
label: Breaking changes?
|
|
placeholder: API/ABI breakage? Migration path?
|
|
|
|
- type: checkboxes
|
|
id: checklist
|
|
attributes:
|
|
label: Checklist
|
|
options:
|
|
- label: CI passes (format, lint, typecheck)
|
|
- label: Clean commits
|
|
- label: No new warnings
|
|
- label: Docs updated if needed
|