Skip to content

Commit

Permalink
fix: change issues
Browse files Browse the repository at this point in the history
  • Loading branch information
terryyz committed Jun 19, 2024
1 parent 0f0ea6e commit 1c6e7ce
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .github/ISSUE_TEMPLATE/buggy_contract.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: "🐛 Report Bad Contract"
description: Report to us that certain program contract should be repaired.
title: "🐛 [TestRemoval] - <TASK_ID> <WHY>"
labels: ["program contract"]
name: "🐛 Report Bad Task"
description: Report to us that certain programming task should be repaired.
title: "🐛 [TaskRemoval/TaskRepair] - <TASK_ID> <WHY>"
labels: ["programming task"]
body:
- type: input
id: version
attributes:
label: "BigCodeBench version"
description: What is the version of BigCodeBench? You can find it by running `pip show bigcodebench`.
placeholder: For example, 0.1.0
placeholder: For example, 0.1.5
validations:
required: true
- type: input
Expand All @@ -27,15 +27,15 @@ body:
- type: textarea
id: original
attributes:
label: "The original wrong contract"
description: You can run `python -c "from bigcodebench.data import get_bigcodebench print(get_bigcodebench['BigCodeBench/❓']['contract'])"`
label: "The original complete prompt"
description: You can run `python -c "from bigcodebench.data import get_bigcodebench print(get_bigcodebench['BigCodeBench/❓']['complete_prompt'])"`
render: python
validations:
required: true
- type: textarea
id: new
attributes:
label: "Your proposed new contract"
label: "Your proposed new complete prompt"
render: python
validations:
required: true
Expand Down
17 changes: 12 additions & 5 deletions .github/ISSUE_TEMPLATE/buggy_test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "🐛 Report Bad Test Inputs"
description: Report to us that certain test inputs should be removed.
title: "🐛 [TestRemoval] - <TASK_ID> <WHY>"
title: "🐛 [TestRemoval/TestRepair] - <TASK_ID> <WHY>"
labels: ["bug"]
body:
- type: input
Expand All @@ -21,14 +21,21 @@ body:
id: task_id
attributes:
label: "Task ID of the programming task"
placeholder: HumanEval/[??]
placeholder: BigCodeBench/[??]
validations:
required: true
- type: textarea
id: test_input
id: original
attributes:
label: "Test input"
description: The text form of the test input that you think should be removed
label: "The original test"
description: You can run `python -c "from bigcodebench.data import get_bigcodebench print(get_bigcodebench['BigCodeBench/❓']['test'])"`
render: python
validations:
required: true
- type: textarea
id: new
attributes:
label: "Your proposed new test"
render: python
validations:
required: true
Expand Down

0 comments on commit 1c6e7ce

Please sign in to comment.