106 lines
3.6 KiB
YAML
106 lines
3.6 KiB
YAML
name: 🚨 Bug Report
|
|
description: Report a bug or issue.
|
|
labels:
|
|
- 'bug'
|
|
body:
|
|
- type: input
|
|
id: github-local-actions-version
|
|
attributes:
|
|
label: Github Local Actions Version
|
|
description: |
|
|
What version of `Github Local Actions` are you using? This can be obtained from the standard `Extensions` view.
|
|
placeholder: |
|
|
v#.#.#
|
|
- type: input
|
|
id: act-version
|
|
attributes:
|
|
label: Act Version
|
|
description: |
|
|
What version of `nektos/act` are you using? This can be obtained from the `Components` view or by running `act --version`.
|
|
placeholder: |
|
|
act version #.#.#
|
|
- type: input
|
|
id: github-repository-link
|
|
attributes:
|
|
label: GitHub Repository Link
|
|
description: |
|
|
If your GitHub repository is **public**, provide a link to help us troubleshoot the problem.
|
|
placeholder: |
|
|
https://github.com/...
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: workflow-content
|
|
attributes:
|
|
label: Workflow Content
|
|
description: |
|
|
Share your **entire** workflow here.
|
|
placeholder: |
|
|
name: My workflow
|
|
on: ['push', 'schedule']
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
KEY: VAL
|
|
[...]
|
|
render: yml
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: act-command-used
|
|
attributes:
|
|
label: Act Command Used
|
|
description: |
|
|
Share the **entire** act command which was used. This can be obtained from the VS Code task used to execute the workflow.
|
|
If you no longer have the task open, you can select `View Output` from the `History` view and find it on the first line of the log file.
|
|
⚠️ Please make sure to remove all sensitive information. ⚠️
|
|
placeholder: |
|
|
act -P ubuntu-latest=node:12 -v ...
|
|
render: sh
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: act-command-output
|
|
attributes:
|
|
label: Act Command Output
|
|
description: |
|
|
Share any relevant log output from the VS Code task or log file. This will be automatically formatted into code, so no need for backticks.
|
|
⚠️ Please make sure to remove all sensitive information. ⚠️
|
|
placeholder: |
|
|
time="2024-11-30T18:48:19-05:00" level=info msg="Using docker host 'npipe:////./pipe/docker_engine', and daemon socket 'npipe:////./pipe/docker_engine'"
|
|
[Build/Extension] 🚀 Start image=catthehacker/ubuntu:act-latest
|
|
[Build/Extension] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
|
|
[Build/Extension] using DockerAuthConfig authentication for docker pull
|
|
[...]
|
|
render: sh
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: bug-description
|
|
attributes:
|
|
label: Bug Description
|
|
description: |
|
|
Describe the bug you encountered and share all steps to reproduce it.
|
|
placeholder: |
|
|
Bug description
|
|
- type: textarea
|
|
id: act-bug-report
|
|
attributes:
|
|
label: Act Bug Report
|
|
description: |
|
|
Provide the output of `act --bug-report`
|
|
placeholder: |
|
|
act version: 0.2.69
|
|
GOOS: windows
|
|
GOARCH: amd64
|
|
NumCPU: 20
|
|
Docker host: DOCKER_HOST environment variable is not set
|
|
Sockets found:
|
|
\\.\pipe\docker_engine(broken)
|
|
Config files:
|
|
C:\Users\sanjula\.actrc:
|
|
[...]
|
|
render: yml
|
|
validations:
|
|
required: false |