...

Text file src/github.com/okta/okta-sdk-golang/v2/.github/ISSUE_TEMPLATE/bug-report.yaml

Documentation: github.com/okta/okta-sdk-golang/v2/.github/ISSUE_TEMPLATE

     1name: Bug Report
     2description: Report a bug you encountered with the Okta Go SDK
     3labels: [ bug ]
     4body:
     5  - type: textarea
     6    id: problem
     7    attributes:
     8      label: Describe the bug?
     9      description: |
    10        Please be as detailed as possible. This will help us address the bug in a timely manner.
    11    validations:
    12      required: true
    13
    14  - type: textarea
    15    id: expected
    16    attributes:
    17      label: What is expected to happen?
    18    validations:
    19      required: true
    20
    21  - type: textarea
    22    id: actual
    23    attributes:
    24      label: What is the actual behavior?
    25    validations:
    26      required: true
    27
    28  - type: textarea
    29    id: repro
    30    attributes:
    31      label: Reproduction Steps?
    32      description: |
    33        Please provide as much detail as possible to help us reproduce your bug.
    34        A reproduction repo is very helpful for us as well.
    35    validations:
    36      required: true
    37
    38  - type: textarea
    39    id: additional
    40    attributes:
    41      label: Additional Information?
    42
    43  - type: textarea
    44    id: goVersion
    45    attributes:
    46      label: Golang Version
    47      description: |
    48        ```console
    49        $ go version
    50        # paste output here
    51        ```
    52    validations:
    53      required: true
    54
    55  - type: textarea
    56    id: sdkVersion
    57    attributes:
    58      label: SDK Version
    59      description: |
    60        ```console
    61        $ make sdk-version
    62        # paste output here
    63        ```
    64    validations:
    65      required: true
    66
    67  - type: textarea
    68    id: osVersion
    69    attributes:
    70      label: OS version
    71      description: |
    72        ```console
    73        # On Linux:
    74        $ cat /etc/os-release
    75        # paste output here
    76
    77        # On Mac:
    78        $ uname -a
    79        # paste output here
    80
    81        # On Windows:
    82        C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
    83        # paste output here
    84        ```

View as plain text