Skip to content
Closed
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
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[env]
RUSTC_BOOTSTRAP = "1"
2 changes: 2 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[profile.ci.junit]
path = "junit.xml"
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Bug Report
description: Report a reproducible defect.
title: "[Bug]: "
labels: [bug]
body:
- type: input
id: summary
attributes:
label: Summary
description: Brief description of the bug.
placeholder: "Brief summary"
validations:
required: true

- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: Clear steps to make the bug happen.
placeholder: |
1. Do thing
validations:
required: false

- type: textarea
id: expected
attributes:
label: Expected Behavior
placeholder: "N/A"
validations:
required: false

- type: textarea
id: actual
attributes:
label: Actual Behavior
placeholder: "N/A"
validations:
required: false

- type: textarea
id: logs
attributes:
label: Logs or Dumps
description: Paste logs or attach relevant binary/debug dumps.
placeholder: "Include only relevant logs"
validations:
required: false
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/epic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Epic
description: High-level initiative composed of multiple tasks.
title: "[Epic]: "
labels: [epic]
body:
- type: input
id: objective
attributes:
label: Objective
description: What is this epic trying to achieve?
placeholder: "Add capability"
validations:
required: true
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/task.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Task
description: A standalone task or implementation item.
title: "[Task]: "
labels: [task]
body:
- type: input
id: summary
attributes:
label: Summary
description: One-line description of the task.
placeholder: "Implement feature X"
validations:
required: true

- type: textarea
id: context
attributes:
label: Context
description: Any background or links needed to understand the task.
placeholder: |
- Related issue: #123
validations:
required: false

- type: textarea
id: acceptance
attributes:
label: Acceptance Criteria
description: What must be true for this to be "done"?
placeholder: |
- Unit tests written
- Compiles without warnings
validations:
required: false
22 changes: 22 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!-- ☝️☝️☝️ PR Title must follow the Conventional Commit format and becomes the merge commit summary:
<type>(<scope>): <short summary>
Types: feat|fix|chore|docs|test|refactor
Scope (area of the codebase), e.g., laser|rrp|sim|ci|core[0-5]|etc.
-->

## Commit Message Details

## Issue URL

Closes #<issue ID>

<!-- `Closes` automatically closes the issue.
`Towards` indicates this contributes to an issue without closing it.
Note: If there is not an associated issue to this PR, you may apply the 'No Issue' label, but do so rarely. -->

## Testing

<!-- List manual and automated tests performed to ensure correctness, e.g.,
- [ ] Tested on target hardware
- [ ] Added automated tests
-->
38 changes: 0 additions & 38 deletions .github/workflows/ci.yml

This file was deleted.

Loading
Loading