mirror of
https://github.com/kmc7468/cs220.git
synced 2025-12-12 21:08:45 +00:00
84 lines
3.2 KiB
YAML
84 lines
3.2 KiB
YAML
name: Question about Assignment
|
|
description: Ask questions about assignment in this format.
|
|
title: '[Assignment #] (SUMMARIZE YOUR QUESTION AS CLEARLY AS POSSIBLE)'
|
|
labels:
|
|
- question
|
|
assignees:
|
|
- woojinnn
|
|
- jirheee
|
|
- AnHaechan
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
# Please read the followings before asking a question:
|
|
- When you're asking a question, please make sure,
|
|
- You clarify your questions as clear as possible.
|
|
- If possible, please make it a yes/no question.
|
|
- If possible, please summarize your question in one sentence at the beginning of an issue.
|
|
- If you're asking a question on concepts,
|
|
- You read the corresponding sections of the slide.
|
|
- You searched for the concepts using search engines and Wikipedia.
|
|
- If you're asking a question on Rust programming,
|
|
- You searched for error messages or any relevant logs using search engines.
|
|
- Your problem is reproducible in the provided server. Please describe how others can reproduce your problem.
|
|
- You paste code, if any, in text with [syntax hightlight](https://docs.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks). No images.
|
|
- You paste code, if any, that is minimized as much as possible. Your code should be immediately relevant to your question.
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
# 1. Related Issue
|
|
- type: input
|
|
attributes:
|
|
label: Related Issue
|
|
description: >-
|
|
Please search to see if a related issue already exists. If so, give me
|
|
the links. If there are multiple issues, please write them all.
|
|
placeholder: 'https://github.com/kaist-cp/cs220/issues/<issue_number>'
|
|
validations:
|
|
required: false
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
# 2. Googling Result
|
|
- type: textarea
|
|
attributes:
|
|
label: Googling Result
|
|
description: >-
|
|
Share the link that looks relavant to your situation. Multiple links are
|
|
welcomed.
|
|
placeholder: >-
|
|
https://stackoverflow.blog/2020/01/20/what-is-rust-and-why-is-it-so-popular/
|
|
validations:
|
|
required: true
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
# 3. ChatGPT Result
|
|
- type: input
|
|
attributes:
|
|
label: ChatGPT Result
|
|
description: >-
|
|
Before writing this issue, you should have asked ChatGPT. We want to see
|
|
how you used ChatGPT for troubleshooting your problem. You can upload
|
|
link like
|
|
[this](https://help.openai.com/en/articles/7925741-chatgpt-shared-links-faq).
|
|
It should contain the history of, including but not limited to, your
|
|
problem statement, the answer from ChatGPT, and your follow-up
|
|
questions. There should be at least 3 turns of conversation.
|
|
placeholder: 'https://chat.openai.com/share/<conversation-ID>'
|
|
validations:
|
|
required: true
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
# 4. Your question
|
|
- type: textarea
|
|
attributes:
|
|
label: Your question here
|
|
description: 'Also tell us, what did you expect to happen?'
|
|
placeholder: YOUR QUESTION HERE
|
|
render: markdown
|
|
validations:
|
|
required: true
|