bug-report.yml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. name: Bug report
  18. title: "[Bug] [Module Name] Bug title "
  19. description: Problems and issues with code of Apache Dolphinscheduler
  20. labels: [ "bug", "Waiting for reply" ]
  21. body:
  22. - type: markdown
  23. attributes:
  24. value: >
  25. Please make sure what you are reporting is indeed a bug with reproducible steps, if you want to ask questions
  26. or share ideas, you can head to our
  27. [Discussions](https://github.com/apache/dolphinscheduler/discussions) tab, you can also
  28. [join our slack](https://s.apache.org/dolphinscheduler-slack)
  29. and send your question to channel `#troubleshooting`
  30. For better global communication, Please write in English.
  31. If you feel the description in English is not clear, then you can append description in Chinese, thanks!
  32. - type: checkboxes
  33. attributes:
  34. label: Search before asking
  35. description: >
  36. Please make sure to search in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue)
  37. first to see whether the same issue was reported already.
  38. options:
  39. - label: >
  40. I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found
  41. no similar issues.
  42. required: true
  43. - type: textarea
  44. attributes:
  45. label: What happened
  46. description: Describe what happened.
  47. placeholder: >
  48. Please provide the context in which the problem occurred and explain what happened
  49. validations:
  50. required: true
  51. - type: textarea
  52. attributes:
  53. label: What you expected to happen
  54. description: What do you think went wrong?
  55. placeholder: >
  56. Please explain why you think the behaviour is erroneous. It is extremely helpful if you copy and paste
  57. the fragment of logs showing the exact error messages or wrong behaviour and screenshots for
  58. UI problems. You can include files by dragging and dropping them here.
  59. **NOTE**: please copy and paste texts instead of taking screenshots of them for easy future search.
  60. validations:
  61. required: true
  62. - type: textarea
  63. attributes:
  64. label: How to reproduce
  65. description: >
  66. What should we do to reproduce the problem? If you are not able to provide a reproducible case,
  67. please open a [Discussion](https://github.com/apache/dolphinscheduler/discussions) instead.
  68. placeholder: >
  69. Please make sure you provide a reproducible step-by-step case of how to reproduce the problem
  70. as minimally and precisely as possible. Keep in mind we do not have access to your deployment.
  71. Remember that non-reproducible issues will be closed! Opening a discussion is recommended as a
  72. first step.
  73. validations:
  74. required: true
  75. - type: textarea
  76. attributes:
  77. label: Anything else
  78. description: Anything else we need to know?
  79. placeholder: >
  80. How often does this problem occur? (Once? Every time? Only when certain conditions are met?)
  81. Any relevant logs to include? Put them here inside fenced
  82. ``` ``` blocks or inside a collapsable details tag if it's too long:
  83. <details><summary>x.log</summary> lots of stuff </details>
  84. - type: dropdown
  85. id: version
  86. attributes:
  87. label: Version
  88. description: >
  89. Which version of Apache DolphinScheduler are you running? We only accept bugs report from the LTS projects.
  90. options:
  91. - dev
  92. - 3.1.x
  93. - 3.2.x
  94. validations:
  95. required: true
  96. - type: checkboxes
  97. attributes:
  98. label: Are you willing to submit PR?
  99. description: >
  100. This is absolutely not required, but we are happy to guide you in the contribution process
  101. especially if you already have a good understanding of how to implement the fix.
  102. Dolphinscheduler is a totally community-driven project and we love to bring new contributors in.
  103. options:
  104. - label: Yes I am willing to submit a PR!
  105. - type: checkboxes
  106. attributes:
  107. label: Code of Conduct
  108. description: |
  109. The Code of Conduct helps create a safe space for everyone. We require that everyone agrees to it.
  110. options:
  111. - label: >
  112. I agree to follow this project's
  113. [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
  114. required: true
  115. - type: markdown
  116. attributes:
  117. value: "Thanks for completing our form!"