Skip to content

Commit

Permalink
Add GitHub issue templates (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cat™ authored Feb 8, 2021
1 parent 316b078 commit 661aa08
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -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!
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_template.md
Original file line number Diff line number Diff line change
@@ -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
69 changes: 69 additions & 0 deletions .github/ISSUE_TEMPLATE/issue_template.md
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit 661aa08

Please sign in to comment.