Skip to content

Commit ee82d6a

Browse files
authored
Merge pull request #269 from actions/robherley/update-issue-templates
Add issue templates
2 parents 37da8e8 + ecd66f1 commit ee82d6a

File tree

5 files changed

+119
-33
lines changed

5 files changed

+119
-33
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: "🐛 Bug report"
2+
description: Let us know about a bug!
3+
labels: ['bug']
4+
title: '[bug]'
5+
body:
6+
- type: textarea
7+
id: problem
8+
attributes:
9+
label: What happened?
10+
description: |
11+
Please provide a clear and concise description of what the bug is. If applicable, add screenshots to help explain your problem.
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: expected
17+
attributes:
18+
label: What did you expect to happen?
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: repro
24+
attributes:
25+
label: How can we reproduce it?
26+
description: |
27+
Please be minimal and precise as possible. If your repo/run is public, please include a URL so it is easier for us to investigate.
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: additional
33+
attributes:
34+
label: Anything else we need to know?
35+
36+
- type: input
37+
id: version
38+
attributes:
39+
label: What version of the action are you using?
40+
placeholder: vX.Y.Z
41+
description: |
42+
Please check the documentation first since different major versions can have different behaviors.
43+
validations:
44+
required: true
45+
46+
- type: dropdown
47+
id: environment
48+
attributes:
49+
label: What are your runner environments?
50+
multiple: true
51+
options:
52+
- self-hosted
53+
- linux
54+
- window
55+
- macos
56+
validations:
57+
required: true
58+
59+
- type: input
60+
id: ghes
61+
attributes:
62+
label: Are you on GitHub Enterprise Server? If so, what version?
63+
placeholder: vX.Y

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 🙋 Ask a question
4+
url: https://github.jpy.wangmunity/c/code-to-cloud/52
5+
about: Please ask and answer questions on GitHub Support Community.
6+
- name: 🔒 Report security vulnerability
7+
url: https://bounty.github.com/
8+
about: Please report security vulnerabilities to GitHub Security Bug Bounty.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "📚 Documentation issues"
2+
description: Make a suggestion to improve the documentation!
3+
labels: ['documentation']
4+
title: '[docs]'
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
❗ This is only for documentation updates for files in this repo, ie: `README.md`.
10+
11+
If you want to suggest changes for the [GitHub Docs](https://docs.github.com/), please [open an issue there](https://github.com/github/docs/issues/new/choose).
12+
- type: textarea
13+
id: affected
14+
attributes:
15+
label: What files would you like to change?
16+
description: |
17+
Please provide permalinks to the specified files and line numbers.
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: suggested
23+
attributes:
24+
label: What are your suggested changes?
25+
description: |
26+
Give as much detail as you can to help us understand the changes you want to see.
27+
validations:
28+
required: true
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "🎁 Feature request"
2+
description: Suggest a new feature/enhancement!
3+
labels: ['enhancement']
4+
title: '[feat req]'
5+
body:
6+
- type: textarea
7+
id: feature
8+
attributes:
9+
label: What would you like to be added?
10+
description: |
11+
Please check existing issues to avoid making duplicates. Any duplicate issue will be closed immediately.
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: reasoning
17+
attributes:
18+
label: Why is this needed?
19+
validations:
20+
required: true

0 commit comments

Comments
 (0)