bug_report.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. name: Bug Report
  2. description: Create a report to help us reproduce and correct the bug
  3. labels: ['bug']
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: >
  8. #### Before submitting a bug, please make sure the issue hasn't been already
  9. addressed by searching through [the past issues](https://github.com/princeton-nlp/SWE-agent/issues).
  10. - type: textarea
  11. attributes:
  12. label: Describe the bug
  13. description: >
  14. A clear and concise description of what the bug is.
  15. validations:
  16. required: true
  17. - type: textarea
  18. attributes:
  19. label: Steps/Code to Reproduce
  20. description: >
  21. Add a minimal code/script example that can reproduce the error when running it if applicable.
  22. Be as succinct as possible.
  23. If reproduction requires external data files, please make it available and provide a donwload link.
  24. On our side, *we will copy-paste your code* to run it to reproduce the error you are facing.
  25. placeholder: |
  26. ```
  27. Sample code/script to reproduce the problem
  28. ```
  29. validations:
  30. required: true
  31. - type: textarea
  32. attributes:
  33. label: Expected Results
  34. description: >
  35. Please paste or describe the expected results.
  36. placeholder: >
  37. Example: No error is thrown.
  38. validations:
  39. required: true
  40. - type: textarea
  41. attributes:
  42. label: Actual Results
  43. description: >
  44. Please paste or describe the results you observe instead of the expected results.
  45. If you observe an error, please paste the error message including the exception traceback.
  46. placeholder: >
  47. Please paste or specifically describe the actual output or traceback.
  48. validations:
  49. required: true
  50. - type: textarea
  51. attributes:
  52. label: System Information
  53. description: |
  54. Please tell us what OS you are using, your Python version, and the `swebench` package version if applicable.
  55. placeholder: >
  56. e.g. MacOS, Python 3.9, swebench 1.0.1
  57. - type: markdown
  58. attributes:
  59. value: >
  60. Thanks for contributing 🎉!