bug-report.yml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. name: Bug report
  2. title: "[<Ray component: Core|RLlib|etc...>] "
  3. description: Problems and issues with code of Ray
  4. labels: [bug, triage]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thank you for reporting the problem!
  10. Please make sure what you are reporting is a bug with reproducible steps. To ask questions
  11. or share ideas, please post on our [Discussion page](https://discuss.ray.io/) instead.
  12. - type: textarea
  13. attributes:
  14. label: What happened + What you expected to happen
  15. description: Describe 1. the bug 2. expected behavior 3. useful information (e.g., logs)
  16. placeholder: >
  17. Please provide the context in which the problem occurred and explain what happened. Further,
  18. please also explain why you think the behaviour is erroneous. It is extremely helpful if you can
  19. copy and paste the fragment of logs showing the exact error messages or wrong behaviour here.
  20. **NOTE**: please copy and paste texts instead of taking screenshots of them for easy future search.
  21. validations:
  22. required: true
  23. - type: textarea
  24. attributes:
  25. label: Versions / Dependencies
  26. description: Please specify the versions of Ray, Python, OS, and other libraries that are used.
  27. placeholder: >
  28. Please specify the versions of dependencies.
  29. validations:
  30. required: true
  31. - type: textarea
  32. attributes:
  33. label: Reproduction script
  34. description: >
  35. Please provide a reproducible script. Providing a narrow reproduction (minimal / no external dependencies) will
  36. help us triage and address issues in the timely manner!
  37. placeholder: >
  38. Please provide a short code snippet (less than 50 lines if possible) that can be copy-pasted to
  39. reproduce the issue. The snippet should have **no external library dependencies**
  40. (i.e., use fake or mock data / environments).
  41. **NOTE**: If the code snippet cannot be run by itself, the issue will be marked as "needs-repro-script"
  42. until the repro instruction is updated.
  43. validations:
  44. required: true
  45. - type: dropdown
  46. attributes:
  47. label: Issue Severity
  48. description: |
  49. How does this issue affect your experience as a Ray user?
  50. multiple: false
  51. options:
  52. - "Low: It annoys or frustrates me."
  53. - "Medium: It is a significant difficulty but I can work around it."
  54. - "High: It blocks me from completing my task."
  55. validations:
  56. required: false