forked from GitTools/actions
-
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
Showing
2 changed files
with
51 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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Ask for help or share ideas | ||
url: https://github.com/GitTools/actions/discussions/new/choose | ||
about: Ask the community for help or share ideas for new features. |
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,46 @@ | ||
name: 🐞 Bug/Issue report | ||
description: Create a report to help us improve | ||
title: "[ISSUE]: <title>" | ||
labels: ["needs triage"] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Prerequisites | ||
options: | ||
- label: I have written a descriptive issue title | ||
required: true | ||
- label: I have searched [issues](https://github.com/GitTools/actions/issues) to ensure it has not already been reported | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: GitVersion package | ||
options: | ||
- GitHub Actions | ||
- AzureDevops task | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: What are you seeing? | ||
description: Describe the issue you are seeing | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: What is expected? | ||
description: Describe what you would expect | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce | ||
description: List of steps or sample project to reproduce the issue | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Output log or link to your CI build (if appropriate). | ||
description: Log messages you receive when running. Make sure there is no sensitive data shared. No need for backticks here. | ||
render: shell | ||
validations: | ||
required: false |