Skip to content

Commit 738ad4a

Browse files
authored
Fix issue template path (#54)
1 parent 5776ac5 commit 738ad4a

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true

.github/ISSUE_TEMPLATE/issue_with_ai.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11

2+
---
3+
name: Issue or feature with AI pre-check
4+
about: Use this template to file a bug or feature, optionally using AI pre-check
5+
title: ""
6+
labels: ""
7+
assignees: ""
8+
---
9+
210
(Optional) When submitting an Issue, please consider using a "deep research" tool to sanity check your proposal. Then **before** submission, run your draft through a strong model with a prompt such as:
311

412
> "Please review the AGENTS.md and README.md along with this draft Issue and check that it does not have any gaps — why it might be insufficient, incomplete, lacking a concrete example, duplicating prior issues or PRs, or not be aligned with the project goals or non‑goals."

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
for k in totals: totals[k]+=int(r.get(k,'0'))
4040
except Exception:
4141
pass
42-
exp_tests=1908
43-
exp_skipped=713
42+
exp_tests=3668
43+
exp_skipped=1424
4444
if totals['tests']!=exp_tests or totals['skipped']!=exp_skipped:
4545
print(f"Unexpected test totals: {totals} != expected tests={exp_tests}, skipped={exp_skipped}")
4646
sys.exit(1)

0 commit comments

Comments
 (0)