31 lines
1.3 KiB
Bash
31 lines
1.3 KiB
Bash
|
# Labels: backend, bug, content, design, duplicate, enhancement, frontend, help wanted, invalid, question, wontfix,
|
||
|
ISSUE_TITLE="Buttons gleichmässig darstellen"
|
||
|
DESC="Die Buttons sollen alle die gleiche Breite haben"
|
||
|
LABELS="design,frontend,enhancement"
|
||
|
DEADLINE="2021-06-23"
|
||
|
tea issue create --title "${ISSUE_TITLE}" --description "${DESC}" --labels "${LABELS}" --deadline "${DEADLINE}"
|
||
|
|
||
|
ISSUE_TITLE="login backend implementieren"
|
||
|
DESC=""
|
||
|
LABELS="backend,enhancement"
|
||
|
DEADLINE="2021-06-25"
|
||
|
tea issue create --title "${ISSUE_TITLE}" --description "${DESC}" --labels "${LABELS}" --deadline "${DEADLINE}"
|
||
|
|
||
|
ISSUE_TITLE="registrieren implementieren backend"
|
||
|
DESC=""
|
||
|
LABELS="backend,enhancement"
|
||
|
DEADLINE="2021-06-25"
|
||
|
tea issue create --title "${ISSUE_TITLE}" --description "${DESC}" --labels "${LABELS}" --deadline "${DEADLINE}"
|
||
|
|
||
|
ISSUE_TITLE="Umfrage erstellen (für neue Teilnehmer)"
|
||
|
DESC=""
|
||
|
LABELS="frontend,enhancement,backend"
|
||
|
DEADLINE="2021-06-25"
|
||
|
tea issue create --title "${ISSUE_TITLE}" --description "${DESC}" --labels "${LABELS}" --deadline "${DEADLINE}"
|
||
|
|
||
|
ISSUE_TITLE="Datenerhebung der Maus und Tastatur"
|
||
|
DESC=""
|
||
|
LABELS="frontend,backend,enhancement"
|
||
|
DEADLINE="2021-06-27"
|
||
|
tea issue create --title "${ISSUE_TITLE}" --description "${DESC}" --labels "${LABELS}" --deadline "${DEADLINE}"
|