From be24fea81b166aa8d7670f6f7a985a00efd8d546 Mon Sep 17 00:00:00 2001 From: Bryan MacFarlane Date: Thu, 19 Dec 2019 08:34:17 -0500 Subject: [PATCH] update issue templates --- .github/ISSUE_TEMPLATE.md | 10 ------ .github/ISSUE_TEMPLATE/bug_report.md | 34 +++++++++++++++++++ .github/ISSUE_TEMPLATE/enhancement_request.md | 27 +++++++++++++++ 3 files changed, 61 insertions(+), 10 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/enhancement_request.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 13d002d9a..000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,10 +0,0 @@ -## Runner Version and Platform -Version of your runner? - -OS of the machine running the runner? OSX/Windows/Linux/... - -## What's not working? -Please include error messages and screenshots. - -## Runner and Worker's Diagnostic Logs -Logs are located in the runner's `_diag` folder. The runner logs are prefixed with `Runner_` and the worker logs are prefixed with `Worker_`. All sensitive information should already be masked out, but please double-check before pasting here. diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..0e4bae3c4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,34 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Run '....' +3. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +## Runner Version and Platform +Version of your runner? + +OS of the machine running the runner? OSX/Windows/Linux/... + +## What's not working? +Please include error messages and screenshots. + +## Job Log Output +If applicable, include the relevant part of the job / step log output here. All sensitive information should already be masked out, but please double-check before pasting here. + +## Runner and Worker's Diagnostic Logs +If applicable, add relevant diagnostic log information. Logs are located in the runner's `_diag` folder. The runner logs are prefixed with `Runner_` and the worker logs are prefixed with `Worker_`. Each job run correlates to a worker log. All sensitive information should already be masked out, but please double-check before pasting here. diff --git a/.github/ISSUE_TEMPLATE/enhancement_request.md b/.github/ISSUE_TEMPLATE/enhancement_request.md new file mode 100644 index 000000000..c8ae26de7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement_request.md @@ -0,0 +1,27 @@ +--- +name: Feature Request +about: Create a request to help us improve +title: '' +labels: enhancement +assignees: '' + +--- + +Thank you 🙇‍♀ for wanting to create a feature in this repository. Before you do, please ensure you are filing the issue in the right place. Issues should only be opened on if the issue **relates to code in this repository**. + +* If you have found a security issue [please submit it here](https://hackerone.com/github) +* If you have questions or issues with the service, writing workflows or actions, then please [visit the GitHub Community Forum's Actions Board](https://github.community/t5/GitHub-Actions/bd-p/actions) +* If you are having an issue or question about GitHub Actions then please [contact customer support](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/about-github-actions#contacting-support) + +If you have a feature request that is relevant to this repository, the runner, then please include the information below: + +**Describe the enhancement** +A clear and concise description of what the features or enhancement you need. + +**Code Snippet** +If applicable, add a code snippet. + +**Additional information** +Add any other context about the feature here. + +NOTE: if the feature request has been agreed upon then the assignee will create an ADR. See docs/adrs/README.md \ No newline at end of file