diff --git a/.github/ISSUE_TEMPLATE/missing_annotation.yml b/.github/ISSUE_TEMPLATE/missing_annotation.yml new file mode 100644 index 000000000..59834dd78 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/missing_annotation.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/wrong_annotation.yml b/.github/ISSUE_TEMPLATE/wrong_annotation.yml new file mode 100644 index 000000000..8eeb1e05a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/wrong_annotation.yml @@ -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