1
1
mirror of https://github.com/nektos/act.git synced 2024-09-20 00:39:02 +03:00

Add GitHub issue templates (#512)

This commit is contained in:
Cat™ 2021-02-08 18:15:51 +01:00 committed by GitHub
parent 316b078f8c
commit 661aa08235
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 86 additions and 0 deletions

8
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@ -0,0 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: Ask on Gitter
url: https://gitter.im/nektos/act
about: You can ask for help here!
- name: Want to contribute to act?
url: https://github.com/nektos/act/blob/master/CONTRIBUTING.md
about: Be sure to read contributing guidelines!

View File

@ -0,0 +1,9 @@
---
name: Feature request
about: Use this template for requesting a feature/enhancement.
title: "Enhancement: "
labels: "kind/feature-request"
assignees: ''
---
## Describe feature

View File

@ -0,0 +1,69 @@
---
name: Issue
about: Use this template for reporting a bug/issue.
title: "Issue: "
labels: kind/bug
assignees: ''
---
<!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## Act version
<!-- Paste output of `act --version` -->
```none
```
## Expected behaviour
<!-- Describe how whole process should go and finish -->
## Actual behaviour
<!-- Describe what happened -->
## Workflow and/or repository
<details>
<summary>workflow</summary>
```none
name: example workflow
on: [push]
jobs:
[...]
```
</details>
## Steps to reproduce
<!--
Make sure to include command you used to run `act`
e.g.:
1. Clone example repo (https://github.com/cplee/github-actions-demo)
2. Enter cloned repo directory
3. Run `act -s SUPER_SECRET=im-a-value`
-->
## `act` output
<!-- Paste output from your terminal, use `-v` or `--verbose` for richer output -->
<details>
<summary>Log</summary>
```none
```
</details>