github.com/nektos/act@v0.2.63/.github/ISSUE_TEMPLATE/bug_report.yml (about)

     1  name: Bug report
     2  description: Use this template for reporting bugs/issues.
     3  labels:
     4    - 'kind/bug'
     5  body:
     6    - type: markdown
     7      attributes:
     8        value: |
     9          Thanks for taking the time to fill out this bug report!
    10    - type: textarea
    11      id: act-debug
    12      attributes:
    13        label: Bug report info
    14        render: plain text
    15        description: |
    16          Output of `act --bug-report`
    17        placeholder: |
    18          act --bug-report
    19      validations:
    20        required: true
    21    - type: textarea
    22      id: act-command
    23      attributes:
    24        label: Command used with act
    25        description: |
    26          Please paste your whole command
    27        placeholder: |
    28          act -P ubuntu-latest=node:12 -v -d ...
    29        render: sh
    30      validations:
    31        required: true
    32    - type: textarea
    33      id: what-happened
    34      attributes:
    35        label: Describe issue
    36        description: |
    37          Also tell us what did you expect to happen?
    38        placeholder: |
    39          Describe issue
    40      validations:
    41        required: true
    42    - type: input
    43      id: repo
    44      attributes:
    45        label: Link to GitHub repository
    46        description: |
    47          Provide link to GitHub repository, you can skip it if the repository is private or you don't have it on GitHub, otherwise please provide it as it might help us troubleshoot problem
    48        placeholder: |
    49          https://github.com/nektos/act
    50      validations:
    51        required: false
    52    - type: textarea
    53      id: workflow
    54      attributes:
    55        label: Workflow content
    56        description: |
    57          Please paste your **whole** workflow here
    58        placeholder: |
    59          name: My workflow
    60          on: ['push', 'schedule']
    61          jobs:
    62            test:
    63              runs-on: ubuntu-latest
    64            env:
    65              KEY: VAL
    66          [...]
    67        render: yml
    68      validations:
    69        required: true
    70    - type: textarea
    71      id: logs
    72      attributes:
    73        label: Relevant log output
    74        description: |
    75          Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. Please verify that the log output doesn't contain any sensitive data.
    76        render: sh
    77        placeholder: |
    78          Use `act -v` for verbose output
    79      validations:
    80        required: true
    81    - type: textarea
    82      id: additional-info
    83      attributes:
    84        label: Additional information
    85        placeholder: |
    86          Additional information that doesn't fit elsewhere
    87      validations:
    88        required: false