Skip to content

Commit f487190

Browse files
authored
chore: add github issue template (#547)
1 parent da55a37 commit f487190

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: 🐞 Bug Report
2+
description: File a bug report
3+
title: "🐞 <title>"
4+
labels: ["bug"]
5+
projects: []
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
- type: textarea
12+
attributes:
13+
label: What is happening?
14+
description: Please provide a clear and concise description of what the bug is.
15+
placeholder: A clear and concise description of what the bug is.
16+
validations:
17+
required: true
18+
- type: input
19+
attributes:
20+
label: Version where you found the bug
21+
description: What version of the action are you using?
22+
placeholder: vX.Y.Z (e.g. v1.0.0) or find it in the logs if you're using a latest version
23+
validations:
24+
required: true
25+
- type: input
26+
attributes:
27+
label: Runner specifics
28+
description: What runner are you using? Self-hosted, GitHub-hosted, or a specific cloud provider?
29+
placeholder: e.g. ubuntu-latest, macos-latest, windows-latest, Self-hosted, etc.
30+
validations:
31+
required: true
32+
- type: textarea
33+
attributes:
34+
label: Action workflow configuration
35+
description: Full workflow file content or a snippet that reproduces the issue.
36+
placeholder: |
37+
steps:
38+
- uses: browser-actions/setup-edge@latest
39+
with:
40+
edge-version: 'latest'
41+
render: yaml
42+
validations:
43+
required: true
44+
- type: input
45+
attributes:
46+
label: Link to the workflow run
47+
description: Please provide a link to the workflow run where you encountered the bug.
48+
placeholder: 'https://github.com/...'
49+
- type: textarea
50+
attributes:
51+
label: Relevant log output
52+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
53+
render: shell

0 commit comments

Comments
 (0)