Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.
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
52 changes: 52 additions & 0 deletions .github/ISSUE_TEMPLATE/missing_annotation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: 'Missing annotation (autogen)'
description: "An annotation should have been generated automatically but wasn't."
labels: ['bug', 'missing annotation']

body:
- type: input
id: url-hash
attributes:
label: URL Hash
description: Copy the part of the URL that starts with `#` from the address bar of your browser.
placeholder: 'ex. #/sklearn/sklearn.metrics'
validations:
required: true

- type: dropdown
id: expected-annotation-type
attributes:
label: Expected Annotation Type
description: Which annotation did you expect to be generated automatically?
options:
- '@boundary'
- '@constant'
- '@enum'
- '@optional'
- '@remove'
- '@required'
validations:
required: true

- type: textarea
id: expected-annotation-inputs
attributes:
label: Expected Annotation Inputs
description: Which inputs did you expect the annotation to have?
validations:
required: true

- type: textarea
id: suggested-solution
attributes:
label: Suggested Solution (optional)
description: Do you already have an idea how this problem could be fixed?
validations:
required: false

- type: textarea
id: additional-context
attributes:
label: Additional Context (optional)
description: Do you have anything else to add?
validations:
required: false
75 changes: 75 additions & 0 deletions .github/ISSUE_TEMPLATE/wrong_annotation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: 'Wrong annotation (autogen)'
description: 'An annotation was generated automatically but is incorrect.'
labels: ['bug', 'wrong annotation']

body:
- type: input
id: url-hash
attributes:
label: URL Hash
description: Copy the part of the URL that starts with `#` from the address bar of your browser.
placeholder: 'ex. #/sklearn/sklearn.metrics'
validations:
required: true

- type: dropdown
id: actual-annotation-type
attributes:
label: Actual Annotation Type
description: Which annotation was generated automatically?
options:
- '@boundary'
- '@constant'
- '@enum'
- '@optional'
- '@remove'
- '@required'
validations:
required: true

- type: textarea
id: actual-annotation-inputs
attributes:
label: Actual Annotation Inputs
description: Which inputs did the automatically generated annotation have?
validations:
required: true

- type: dropdown
id: expected-annotation-type
attributes:
label: Expected Annotation Type
description: Which annotation did you expect to be generated automatically?
options:
- '@boundary'
- '@constant'
- '@enum'
- '@optional'
- '@remove'
- '@required'
validations:
required: true

- type: textarea
id: expected-annotation-inputs
attributes:
label: Expected Annotation Inputs
description: Which inputs did you expect the annotation to have?
validations:
required: true

- type: textarea
id: suggested-solution
attributes:
label: Suggested Solution (optional)
description: Do you already have an idea how this problem could be fixed?
validations:
required: false

- type: textarea
id: additional-context
attributes:
label: Additional Context (optional)
description: Do you have anything else to add?
validations:
required: false