diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..49d8c45a9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,48 @@ +--- +name: Bug report +about: Create a reproducible bug report. +labels: bug, triage +--- + +## Summary + +What happened/what you expected to happen? + +## Description + +- versions affected: +- python version: +- config (optional: HW, OS): +- workaround (optional): if you’ve a way to workaround the issue +- proposed fix (optional): if you’ve a way to fix the issue + +Step by step procedure someone should follow to trigger the bug: + +
minimal POC to trigger the bug +

+ +```python +print("Minimal POC to reproduce the bug") +``` + +

+
+ +## Artifacts + +Generate a compiler report (see documentation) and attach all generated artifacts here: + +- bounds.txt +- cryptographic_parameters.txt +- ir_nodes.txt +- optimizations_applied.txt +- target_nodes.txt + +
Logs or output +

+ +```console +``` + +

+
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..0086358db --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true diff --git a/.github/ISSUE_TEMPLATE/features.md b/.github/ISSUE_TEMPLATE/features.md new file mode 100644 index 000000000..85f57d9d2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/features.md @@ -0,0 +1,17 @@ +--- +name: Feature +about: Suggest a new feature. +labels: feature +--- + +## Summary + +Concise summary of the feature to be added. With a usecase example if applicable. + +## Problem to solve + +What are you trying to achieve that is not possible in the current features set. + +## Proposals + +What would be your proposals to implement it. diff --git a/.github/ISSUE_TEMPLATE/refactor.md b/.github/ISSUE_TEMPLATE/refactor.md new file mode 100644 index 000000000..b5023e9f0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/refactor.md @@ -0,0 +1,19 @@ +--- +name: Refactor +about: Suggest a code refactor. +labels: refactor +--- + +## Proposal + +What would be your refactor proposal + +## Impact + +List all files/modules/projects impacted by this refactor + +
Files impacted +

+file.py +

+
\ No newline at end of file