forked from MatteoH2O1999/setup-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
721f2cd
commit 8ba2168
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: CPython failed build | ||
description: File a report for a failed build on a specific Python version | ||
title: "[Failed Build]: " | ||
labels: | ||
- bug | ||
assignees: | ||
- MatteoH2O1999 | ||
body: | ||
- type: input | ||
id: version | ||
validations: | ||
required: true | ||
attributes: | ||
label: CPython version | ||
description: Which CPython version were you trying to build? | ||
placeholder: x.y.z | ||
- type: dropdown | ||
id: labels | ||
validations: | ||
required: true | ||
attributes: | ||
label: Failed labels | ||
description: On which labels does the build fail? | ||
multiple: true | ||
options: | ||
- "ubuntu-latest" | ||
- "windows-latest" | ||
- "macos-latest" | ||
- type: dropdown | ||
id: runner | ||
validations: | ||
required: true | ||
attributes: | ||
label: Used runners | ||
description: Which runner type have you used? | ||
multiple: false | ||
options: | ||
- "Github-hosted" | ||
- "Self-hosted" | ||
- type: input | ||
id: logs | ||
validations: | ||
required: true | ||
attributes: | ||
label: Failed build logs | ||
description: Please paste a link to the failed workflow run below (or, if a private repository, a link to a text file containing the logs) | ||
placeholder: https://github.com/MatteoH2O1999/setup-python/actions/runs/5367028286 |