Skip to content

Commit ba055f7

Browse files
authored
create issue template (#1214)
1 parent 7a1eb1e commit ba055f7

File tree

4 files changed

+338
-0
lines changed

4 files changed

+338
-0
lines changed
Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
name: 😱 Regression
2+
description: This used to work, but a change in the service/tasks broke it. (Please make sure you know the last known working version)
3+
title: "[REGRESSION]: "
4+
labels: ["regression", "bug"]
5+
body:
6+
7+
- type: checkboxes
8+
id: new-issue-checklist
9+
attributes:
10+
label: New issue checklist
11+
description: |
12+
Please make sure you've completed the following tasks before submitting your issue. Thanks!
13+
options:
14+
- label: I searched for [existing GitHub issues](https://github.com/microsoft/azure-pipelines-tasks/issues)
15+
- label: I read [pipeline troubleshooting guide](https://docs.microsoft.com/vsts/build-release/actions/troubleshooting)
16+
- label: I checked [how to collect logs](https://learn.microsoft.com/azure/devops/pipelines/troubleshooting/review-logs?view=azure-devops)
17+
18+
- type: input
19+
id: task-name
20+
attributes:
21+
label: Extension name
22+
placeholder: E.g. Ansible
23+
24+
- type: input
25+
id: breaking-task-version
26+
attributes:
27+
label: Breaking Extension version
28+
placeholder: E.g. 15.230.0
29+
30+
- type: input
31+
id: working-task-version
32+
attributes:
33+
label: Last working version
34+
placeholder: E.g. 15.231.0
35+
36+
- type: textarea
37+
id: what-happened
38+
attributes:
39+
label: Regression Description
40+
description: Tell us what you see, and what did you expect to happen?
41+
value: "A regression happened!"
42+
validations:
43+
required: true
44+
45+
#################### Environment details ####################
46+
47+
- type: markdown
48+
attributes:
49+
value: |
50+
## Environment
51+
52+
- type: checkboxes
53+
id: environment-type
54+
attributes:
55+
label: Environment type (Please select at least one enviroment where you face this issue)
56+
options:
57+
- label: Self-Hosted
58+
- label: Microsoft Hosted
59+
- label: VMSS Pool
60+
- label: Container
61+
62+
- type: dropdown
63+
id: azure-devops-type
64+
attributes:
65+
label: Azure DevOps Server type
66+
options:
67+
- dev.azure.com (formerly visualstudio.com)
68+
- Azure DevOps Server (Please specify exact version in the textbox below)
69+
validations:
70+
required: true
71+
72+
- type: input
73+
id: azure-devops-server-datails
74+
attributes:
75+
label: Azure DevOps Server Version (if applicable)
76+
placeholder: Azure DevOps Server 2019.1
77+
78+
- type: input
79+
id: operation-system
80+
attributes:
81+
label: Operation system
82+
placeholder: Windows 11, Ubuntu 20.04...
83+
validations:
84+
required: true
85+
86+
#################### Logs ####################
87+
88+
- type: markdown
89+
attributes:
90+
value: |
91+
## Logs
92+
93+
- type: textarea
94+
id: logs
95+
attributes:
96+
label: Relevant log output
97+
description: |
98+
Please copy and paste any relevant log output that contains the error message.
99+
render: shell
100+
validations:
101+
required: true
102+
103+
- type: textarea
104+
id: full-task-logs
105+
attributes:
106+
label: Full task logs with system.debug enabled
107+
description: |
108+
Please copy and paste full task logs.
109+
value: |
110+
<details>
111+
<summary>UNSUCCESSFUL RUN</summary>
112+
<pre> [REPLACE THIS WITH YOUR INFORMATION] </pre>
113+
</details>
114+
115+
<details>
116+
<summary>SUCCESSFUL RUN</summary>
117+
<pre> [REPLACE THIS WITH YOUR INFORMATION] </pre>
118+
</details>
119+
120+
#################### Repro steps ####################
121+
122+
- type: textarea
123+
id: repro-steps
124+
attributes:
125+
label: Repro steps
126+
description: |
127+
Please provide repro steps or link to the code in a public GitHub repository that reproduces the issue, or a minimal Yaml definition to reproduce the problem if possible.
128+
placeholder: |
129+
# for example: https://github.com/some-public-repo
130+
# OR
131+
trigger:
132+
- master
133+
pool:
134+
vmImage: ubuntu-latest
135+
steps:
136+
- script: echo Hello, world!
137+
displayName: 'Your step'
138+
render: yml

.github/ISSUE_TEMPLATE/2.bug.yml

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
name: 🐞 Bug
2+
description: Something doesn't work as expected.
3+
title: "[BUG]: "
4+
labels: ["bug"]
5+
body:
6+
7+
8+
- type: checkboxes
9+
id: new-issue-checklist
10+
attributes:
11+
label: New issue checklist
12+
description: |
13+
Please make sure you've completed the following tasks before submitting your issue. Thanks!
14+
options:
15+
- label: I searched for [existing GitHub issues](https://github.com/microsoft/azure-pipelines-tasks/issues)
16+
- label: I read [pipeline troubleshooting guide](https://docs.microsoft.com/vsts/build-release/actions/troubleshooting)
17+
- label: I checked [how to collect logs](https://learn.microsoft.com/azure/devops/pipelines/troubleshooting/review-logs?view=azure-devops)
18+
19+
- type: input
20+
id: task-name
21+
attributes:
22+
label: Extension name
23+
placeholder: E.g. Ansible
24+
25+
- type: input
26+
id: task-version
27+
attributes:
28+
label: Extension version
29+
placeholder: x.x.x
30+
31+
- type: textarea
32+
id: what-happened
33+
attributes:
34+
label: Issue Description
35+
description: Tell us what you see, and what did you expect to happen?
36+
value: "A bug happened!"
37+
validations:
38+
required: true
39+
40+
#################### Environment details ####################
41+
42+
- type: markdown
43+
attributes:
44+
value: |
45+
## Environment
46+
47+
- type: checkboxes
48+
id: environment-type
49+
attributes:
50+
label: Environment type (Please select at least one enviroment where you face this issue)
51+
options:
52+
- label: Self-Hosted
53+
- label: Microsoft Hosted
54+
- label: VMSS Pool
55+
- label: Container
56+
57+
- type: dropdown
58+
id: azure-devops-type
59+
attributes:
60+
label: Azure DevOps Server type
61+
options:
62+
- dev.azure.com (formerly visualstudio.com)
63+
- Azure DevOps Server (Please specify exact version in the textbox below)
64+
validations:
65+
required: true
66+
67+
- type: input
68+
id: azure-devops-server-datails
69+
attributes:
70+
label: Azure DevOps Server Version (if applicable)
71+
placeholder: Azure DevOps Server 2019.1
72+
73+
- type: input
74+
id: operation-system
75+
attributes:
76+
label: Operation system
77+
placeholder: Windows 11, Ubuntu 20.04...
78+
validations:
79+
required: true
80+
81+
#################### Logs ####################
82+
83+
- type: markdown
84+
attributes:
85+
value: |
86+
## Logs
87+
88+
- type: textarea
89+
id: logs
90+
attributes:
91+
label: Relevant log output
92+
description: |
93+
Please copy and paste any relevant log output that contains the error message.
94+
render: shell
95+
validations:
96+
required: true
97+
98+
- type: textarea
99+
id: full-task-logs
100+
attributes:
101+
label: Full task logs with system.debug enabled
102+
description: |
103+
Please copy and paste full task logs.
104+
value: |
105+
<details>
106+
<pre> [REPLACE THIS WITH YOUR INFORMATION] </pre>
107+
</details>
108+
109+
#################### Repro steps ####################
110+
111+
- type: textarea
112+
id: repro-steps
113+
attributes:
114+
label: Repro steps
115+
description: |
116+
Please provide repro steps or link to the code in a public GitHub repository that reproduces the issue, or a minimal Yaml definition to reproduce the problem if possible.
117+
placeholder: |
118+
# for example: https://github.com/some-public-repo
119+
# OR
120+
trigger:
121+
- master
122+
pool:
123+
vmImage: ubuntu-latest
124+
steps:
125+
- script: echo Hello, world!
126+
displayName: 'Your step'
127+
render: yml

.github/ISSUE_TEMPLATE/3.question.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: ❓ Ask a Question
2+
description: Raise a question
3+
title: "[Question]: "
4+
labels: ["help wanted"]
5+
body:
6+
7+
- type: input
8+
id: task-name
9+
attributes:
10+
label: Extension name
11+
- type: input
12+
id: task-version
13+
attributes:
14+
label: Extension version
15+
placeholder: x.x.x
16+
- type: markdown
17+
attributes:
18+
value: |
19+
## Environment
20+
- type: checkboxes
21+
id: environment-type
22+
attributes:
23+
label: Environment type (Please select at least one enviroment where you face this issue)
24+
options:
25+
- label: Self-Hosted
26+
- label: Microsoft Hosted
27+
- label: VMSS Pool
28+
- label: Container
29+
- type: dropdown
30+
id: azure-devops-type
31+
attributes:
32+
label: Azure DevOps Server type
33+
options:
34+
- dev.azure.com (formerly visualstudio.com)
35+
- Azure DevOps Server (Please specify exact version in the textbox below)
36+
validations:
37+
required: true
38+
- type: input
39+
id: azure-devops-server-datails
40+
attributes:
41+
label: Azure DevOps Server Version (if applicable)
42+
placeholder: Azure DevOps Server 2019.1
43+
- type: input
44+
id: operation-system
45+
attributes:
46+
label: Operation system
47+
placeholder: Windows 11, Ubuntu 20.04...
48+
validations:
49+
required: true
50+
- type: textarea
51+
id: question
52+
attributes:
53+
label: Question
54+
description: |
55+
Please write your question here
56+
render: shell
57+
validations:
58+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Developer Community
4+
url: https://developercommunity.visualstudio.com/AzureDevOps
5+
about: For other Azure DevOps issues
6+
- name: Agent issue
7+
url: https://github.com/microsoft/azure-pipelines-agent/issues/new
8+
about: If you have issues with pipelines agent, please place your issues here.
9+
- name: Task issue
10+
url: https://github.com/microsoft/azure-pipelines-tasks/issues/new
11+
about: If you have issues with ADO task, please place your issues here.
12+
- name: Security issue
13+
url: https://github.com/microsoft/azure-pipelines-tasks/security/policy
14+
about: For security issues, please check our policy
15+

0 commit comments

Comments
 (0)