Skip to content

Commit

Permalink
Add issue templates (#4154)
Browse files Browse the repository at this point in the history
* Add issue templates

* Update config.yml

* update templates

* Update config.yml
  • Loading branch information
kirill-ivlev committed Mar 7, 2023
1 parent 84a6f86 commit b4dd146
Show file tree
Hide file tree
Showing 4 changed files with 166 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Bug
description: File a bug report
title: "[BUG]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: markdown
attributes:
value: |
## Having issue with Tasks?
Log an issue at [Azure-Pipelines-Tasks](https://github.com/Microsoft/azure-pipelines-tasks). It contains all of the in-box tasks we ship with Azure-Pipelines/VSTS/TFS. If you're having issues with tasks in Build/Release jobs (e.g. unreasonable task failure) please log an issue there.
- type: textarea
id: what-happened
attributes:
label: What happened?
description: What did you do? What happened? What did you expect to happen?
placeholder: Put your description of the bug here.
validations:
required: true
- type: textarea
id: versions
attributes:
label: Versions
description: Specify the agent version and operation system version
placeholder: Azure DevOps version 2.100.1 / Windows 10
validations:
required: true
- type: checkboxes
id: environment-type
attributes:
label: Environment type (Please select at least one enviroment where you face this issue)
options:
- label: Self-Hosted
- label: Microsoft Hosted
- label: VMSS Pool
- label: Container
- type: dropdown
id: azure-devops-type
attributes:
label: Azure DevOps Server type
options:
- dev.azure.com (formerly visualstudio.com)
- Azure DevOps Server (Please specify exact version in the textbox below)
validations:
required: true
- type: input
id: azure-devops-server-datails
attributes:
label: Azure DevOps Server Version (if applicable)
placeholder: Azure DevOps Server 2019.1
- type: input
id: operation-system
attributes:
label: Operation system
placeholder: Windows 11, Ubuntu 20.04...
- type: input
id: version-control-type
attributes:
label: Version controll system
- type: textarea
id: logs
attributes:
label: Relevant log output
description: |
Please copy and paste any relevant log output. You can find it in the _diag folder or on the pipelines logs on ADO side
render: shell
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
blank_issues_enabled: false
contact_links:
- name: Developer Community
url: https://developercommunity.visualstudio.com/AzureDevOps
about: For other Azure DevOps issues
- name: Tasks issue
url: https://github.com/microsoft/azure-pipelines-tasks/issues/new
about: If you have issues with tasks, please place your issues here.
- name: Security issue
url: https://github.com/microsoft/azure-pipelines-agent/security/policy
about: For security issues, please check our policy
- name: Issue with YAML
url: https://github.com/Microsoft/azure-pipelines-yaml
about: Over there we discuss YAML templates, samples for Azure Pipelines, and designs for upcoming YAML features. Also a place for the community to share best practices, ideas, and so on. File suggestions and issues here if they're specific to YAML pipelines.
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Feature request
description: Use this template to submit a feature request
title: "[enhancement]: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to raise a question
- type: markdown
attributes:
value: |
## Having issue with Tasks?
Log an issue at [Azure-Pipelines-Tasks](https://github.com/Microsoft/azure-pipelines-tasks). It contains all of the in-box tasks we ship with Azure-Pipelines/VSTS/TFS. If you're having issues with tasks in Build/Release jobs (e.g. unreasonable task failure) please log an issue there.
- type: textarea
id: what-happened
attributes:
label: Describe your feature request here
placeholder: Put your question here.
description: Please try to provide as much details as possible
validations:
required: true
61 changes: 61 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Help needed
description: Raise a question
title: "[Question]: "
labels: ["helpwanted"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to raise a question
- type: markdown
attributes:
value: |
## Having issue with Tasks?
Log an issue at [Azure-Pipelines-Tasks](https://github.com/Microsoft/azure-pipelines-tasks). It contains all of the in-box tasks we ship with Azure-Pipelines/VSTS/TFS. If you're having issues with tasks in Build/Release jobs (e.g. unreasonable task failure) please log an issue there.
- type: textarea
id: what-happened
attributes:
label: Describe your question
placeholder: Put your question here.
validations:
required: true
- type: textarea
id: versions
attributes:
label: Versions
description: Specify the agent version and operation system version
placeholder: Azure DevOps version 2.100.1 / Windows 10
validations:
required: true
- type: checkboxes
id: environment-type
attributes:
label: Environment type (Please select at least one enviroment where you face this issue)
options:
- label: Self-Hosted
- label: Microsoft Hosted
- label: VMSS Pool
- label: Container
- type: dropdown
id: azure-devops-type
attributes:
label: Azure DevOps Server type
options:
- dev.azure.com (formerly visualstudio.com)
- Azure DevOps Server (Please specify exact version in the textbox below)
validations:
required: true
- type: input
id: operation-system
attributes:
label: Operation system
placeholder: Windows 11, Ubuntu 20.04...
- type: input
id: version-control-type
attributes:
label: Version controll system
- type: input
id: azure-devops-server-datails
attributes:
label: Azure DevOps Server Version (if applicable)
placeholder: Azure DevOps Server 2019.1

0 comments on commit b4dd146

Please sign in to comment.