cec63488f3
* feat: bump `golangci-lint`, add `super-linter`, replace outdated linter Bump `golangci-lint` version. Add `super-linter` to lint other languages. Go linter is disabled because it's currently broken: https://github.com/github/super-linter/pull/370 Replacing `scopelint` with `exportloopref`: "[runner] The linter 'scopelint' is deprecated (since v1.39.0) due to: The repository of the linter has been deprecated by the owner. Replaced by exportloopref." Fixed formatting in `.golangci.yml` Add addtional linters: `misspell`: purely style, detects typos in comments `whitespace`: detects leading and trailing whitespace `goimports`: it's gofmt + checks unused imports * fix: lint/fix `go` files * fix: lint with `standardjs` * fix: lint/fix with `markdownlint`, make template more verbose * feat: add lint stuff to makefile * fix: `UseGitIgnore` formatting * fix: lint/fix `README.md` Co-authored-by: Casey Lee <cplee@nektos.com>
81 lines
1.4 KiB
Markdown
81 lines
1.4 KiB
Markdown
---
|
|
name: Issue
|
|
about: Use this template for reporting a bug/issue.
|
|
title: "Issue: <shortly describe 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` inside the code block below
|
|
- If you've built `act` yourself, please provide commit hash
|
|
-->
|
|
|
|
```none
|
|
|
|
```
|
|
|
|
## Expected behaviour
|
|
|
|
<!--
|
|
- Describe how whole process should go and finish
|
|
-->
|
|
|
|
## Actual behaviour
|
|
|
|
<!--
|
|
- Describe the issue
|
|
-->
|
|
|
|
## Workflow and/or repository
|
|
|
|
<!--
|
|
- Provide workflow with which we can reproduce the issue
|
|
OR
|
|
- Provide link to your GitHub repository that contains the workflow
|
|
|
|
<details>
|
|
<summary>workflow</summary>
|
|
|
|
```none
|
|
name: example workflow
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
[...]
|
|
```
|
|
|
|
</details>
|
|
|
|
## Steps to reproduce
|
|
|
|
<!--
|
|
- Make sure to include full command with parameters you used to run `act`, example:
|
|
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
|
|
|
|
<!--
|
|
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
|
|
-->
|
|
|
|
<details>
|
|
<summary>Log</summary>
|
|
|
|
```none
|
|
PASTE YOUR LOG HERE
|
|
```
|
|
|
|
</details>
|