Eine einzelne Issue-Vorlage für Ihr Repository manuell erstellen
Wenn Sie eine manuell erstellte Issue-Vorlage zu Ihrem Repository hinzufügen, sehen Projektmitarbeiter automatisch den Inhalt der Vorlage im Text des Issues.
This is the legacy workflow to create an issue template. We recommend using the upgraded multiple issue template builder to create multiple issue templates. For more information, see "About issue and pull request templates."
Sie können in einem der unterstützten Ordner ein Unterverzeichnis ISSUE_TEMPLATE erstellen, um mehrere Issue-Vorlagen zu speichern. Mit dem Abfrageparameter template
können Sie die Vorlage festlegen, mit der der Issue-Text ausgefüllt werden soll. Weitere Informationen finden Sie unter „Informationen zur Automatisierung für Issues und Pull Requests mit Abfrageparametern“.
Eine Issue-Vorlage hinzufügen
-
On GitHub Enterprise, navigate to the main page of the repository.
-
Above the file list, click Create new file.
-
Geben Sie Folgendes im Feld für den Dateinamen ein:
- To make your issue template visible in the repository's root directory, type the name of your issue_template. z. B.
issue_template.md
. - To make your issue template visible in the repository's
docs
directory, type docs/ followed by the name of your issue_template. z. B.docs/issue_template.md
. - To store your file in a hidden directory, type .github/ followed by the name of your issue_template. z. B.
.github/issue_template.md
. - Um mehrere Issue-Vorlagen zu erstellen und mithilfe des Abfrageparameters
template
eine Vorlage zum Ausfüllen des Issue-Textes festzulegen, geben Sie .github/ISSUE_TEMPLATE/ ein, gefolgt vom Namen der Issue-Vorlage. Beispiel:.github/ISSUE_TEMPLATE/issue_template.md
. Sie können auch mehrere Issue-Vorlagen in einem UnterverzeichnisISSUE_TEMPLATE
innerhalb des Root-Verzeichnisses oder indocs/
-Verzeichnissen speichern. Weitere Informationen finden Sie unter „Informationen zur Automatisierung für Issues und Pull Requests mit Abfrageparametern“.
- To make your issue template visible in the repository's root directory, type the name of your issue_template. z. B.
-
Fügen Sie im Text der neuen Datei Ihre Issue-Vorlage hinzu. Sie könnte beispielsweise Folgendes enthalten:
- erwartetes und tatsächliches Verhalten
- Schritte zur Reproduzierung des Problems
- Spezifikationen, z. B. die Version des Projekts, das Betriebssystem oder die Hardware
-
At the bottom of the page, type a short, meaningful commit message that describes the change you made to the file. You can attribute the commit to more than one author in the commit message. For more information, see "Creating a commit with multiple co-authors."
-
Below the commit message fields, decide whether to add your commit to the current branch or to a new branch. If your current branch is
master
, you should choose to create a new branch for your commit and then create a pull request. For more information, see "Creating a new pull request."Templates are available to collaborators when they are merged into the repository's default branch. -
Click Propose new file.