-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Cat™
authored
Feb 8, 2021
1 parent
316b078
commit 661aa08
Showing
3 changed files
with
86 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,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! |
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,9 @@ | ||
--- | ||
name: Feature request | ||
about: Use this template for requesting a feature/enhancement. | ||
title: "Enhancement: " | ||
labels: "kind/feature-request" | ||
assignees: '' | ||
--- | ||
|
||
## Describe feature |
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,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> |