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
194 changes: 0 additions & 194 deletions .github/CODE_EXAMPLE.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
open_collective: wave-lang
github: [wavefnd, LunaStev]
open_collective: wave-lang
33 changes: 0 additions & 33 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

57 changes: 57 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Bug report
description: Report a reproducible compiler, language, code generation, or toolchain defect.
title: "[Bug]: "
labels:
- bug
body:
- type: checkboxes
attributes:
label: Before submitting
options:
- label: I searched existing issues for the same problem.
required: true
- label: I can reproduce this with a supported Wave compiler build.
required: true
- type: input
attributes:
label: Wave version
description: Paste the complete output of `wavec --version`.
placeholder: wavec ...
validations:
required: true
- type: input
attributes:
label: Host environment
description: Operating system, architecture, and relevant toolchain versions.
placeholder: Fedora Linux, x86_64, LLVM ...
validations:
required: true
- type: input
attributes:
label: Target triple
description: The selected target, or `host default` if no target was passed.
placeholder: riscv64-unknown-linux-gnu
validations:
required: true
- type: textarea
attributes:
label: Reproduction
description: Include the smallest Wave source and the exact command needed to reproduce the problem.
render: shell
validations:
required: true
- type: textarea
attributes:
label: Expected behavior
validations:
required: true
- type: textarea
attributes:
label: Actual behavior and diagnostics
description: Include complete stdout, stderr, exit status, and backtrace when available.
validations:
required: true
- type: textarea
attributes:
label: Additional context
description: Add related files, regressions, linker/sysroot details, or anything else that may help.
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Design discussions and questions
url: https://github.com/wavefnd/Wave/discussions
about: Discuss language design, usage questions, and ideas before opening an implementation issue.
- name: Wave community
url: https://wave-lang.dev/community
about: Get help and talk with other Wave users and contributors.
25 changes: 0 additions & 25 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

46 changes: 46 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Feature request
description: Propose a focused language, compiler, target, standard library, or tooling improvement.
title: "[Proposal]: "
labels:
- enhancement
body:
- type: checkboxes
attributes:
label: Before submitting
options:
- label: I searched existing issues and discussions for this proposal.
required: true
- type: dropdown
attributes:
label: Area
options:
- Language and semantics
- Parser and frontend
- LLVM code generation
- Target and ABI support
- CLI and diagnostics
- Standard library
- Testing and CI
- Documentation
- Other
validations:
required: true
- type: textarea
attributes:
label: Problem
description: Describe the concrete limitation or use case this proposal addresses.
validations:
required: true
- type: textarea
attributes:
label: Proposed contract
description: Explain the expected syntax, semantics, CLI behavior, or target contract with examples where useful.
validations:
required: true
- type: textarea
attributes:
label: Alternatives and compatibility
description: Describe alternatives considered and any compatibility, migration, ABI, or platform impact.
- type: textarea
attributes:
label: Additional context
Loading
Loading