Skip to content

Commit 661aa08

Browse files
author
Cat™
authored
Add GitHub issue templates (nektos#512)
1 parent 316b078 commit 661aa08

File tree

3 files changed

+86
-0
lines changed

3 files changed

+86
-0
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Ask on Gitter
4+
url: https://gitter.im/nektos/act
5+
about: You can ask for help here!
6+
- name: Want to contribute to act?
7+
url: https://github.com/nektos/act/blob/master/CONTRIBUTING.md
8+
about: Be sure to read contributing guidelines!
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Feature request
3+
about: Use this template for requesting a feature/enhancement.
4+
title: "Enhancement: "
5+
labels: "kind/feature-request"
6+
assignees: ''
7+
---
8+
9+
## Describe feature
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
---
2+
name: Issue
3+
about: Use this template for reporting a bug/issue.
4+
title: "Issue: "
5+
labels: kind/bug
6+
assignees: ''
7+
---
8+
9+
<!--
10+
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
11+
- Search the existing issues.
12+
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
13+
-->
14+
15+
## Act version
16+
17+
<!-- Paste output of `act --version` -->
18+
19+
```none
20+
21+
```
22+
23+
## Expected behaviour
24+
25+
<!-- Describe how whole process should go and finish -->
26+
27+
## Actual behaviour
28+
29+
<!-- Describe what happened -->
30+
31+
## Workflow and/or repository
32+
33+
<details>
34+
<summary>workflow</summary>
35+
36+
```none
37+
name: example workflow
38+
39+
on: [push]
40+
41+
jobs:
42+
[...]
43+
```
44+
45+
</details>
46+
47+
## Steps to reproduce
48+
49+
<!--
50+
Make sure to include command you used to run `act`
51+
e.g.:
52+
1. Clone example repo (https://github.com/cplee/github-actions-demo)
53+
2. Enter cloned repo directory
54+
3. Run `act -s SUPER_SECRET=im-a-value`
55+
-->
56+
57+
58+
## `act` output
59+
60+
<!-- Paste output from your terminal, use `-v` or `--verbose` for richer output -->
61+
62+
<details>
63+
<summary>Log</summary>
64+
65+
```none
66+
67+
```
68+
69+
</details>

0 commit comments

Comments
 (0)