|
| 1 | +# SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. |
| 2 | +# SPDX-License-Identifier: Apache-2.0 |
| 3 | +# |
| 4 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +# you may not use this file except in compliance with the License. |
| 6 | +# You may obtain a copy of the License at |
| 7 | +# |
| 8 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# |
| 10 | +# Unless required by applicable law or agreed to in writing, software |
| 11 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +# See the License for the specific language governing permissions and |
| 14 | +# limitations under the License. |
| 15 | + |
| 16 | +name: Documentation - Correction/Update Request |
| 17 | +description: Request corrections or updates to existing documentation |
| 18 | +title: "[DOC]: " |
| 19 | +labels: ["doc"] |
| 20 | + |
| 21 | +body: |
| 22 | + - type: markdown |
| 23 | + attributes: |
| 24 | + value: | |
| 25 | + Thanks for taking the time to improve our documentation! |
| 26 | +
|
| 27 | + - type: dropdown |
| 28 | + id: criticality |
| 29 | + attributes: |
| 30 | + label: How would you describe the priority of this documentation request |
| 31 | + options: |
| 32 | + - Critical (currently preventing usage) |
| 33 | + - High |
| 34 | + - Medium |
| 35 | + - Low (would be nice) |
| 36 | + validations: |
| 37 | + required: true |
| 38 | + |
| 39 | + - type: input |
| 40 | + id: correction_location |
| 41 | + attributes: |
| 42 | + label: Please provide a link or source to the relevant docs |
| 43 | + placeholder: "ex: https://github.com/kai-scheduler/kai-scheduler/blob/main/README.md" |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + |
| 47 | + - type: textarea |
| 48 | + id: problem |
| 49 | + attributes: |
| 50 | + label: Describe the problems in the documentation |
| 51 | + placeholder: The documents say to use foo.func(args) however an AttributeError is thrown |
| 52 | + validations: |
| 53 | + required: true |
| 54 | + |
| 55 | + - type: textarea |
| 56 | + id: correction |
| 57 | + attributes: |
| 58 | + label: (Optional) Propose a correction |
| 59 | + placeholder: foo.func() was deprecated, replace documentation with foo.new_func() |
| 60 | + |
| 61 | + - type: checkboxes |
| 62 | + id: terms |
| 63 | + attributes: |
| 64 | + label: Code of Conduct |
| 65 | + description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/kai-scheduler/kai-scheduler/blob/main/CODE_OF_CONDUCT.md) |
| 66 | + options: |
| 67 | + - label: I agree to follow KAI-Scheduler's Code of Conduct |
| 68 | + required: true |
| 69 | + - label: I have searched the [open documentation issues](https://github.com/kai-scheduler/kai-scheduler/issues?q=is%3Aopen+is%3Aissue+label%3Adoc) and have found no duplicates for this request |
| 70 | + required: true |
0 commit comments