...

Text file src/github.com/aws/aws-sdk-go-v2/.github/ISSUE_TEMPLATE/bug-report.yml

Documentation: github.com/aws/aws-sdk-go-v2/.github/ISSUE_TEMPLATE

     1---
     2name: "🐛 Bug Report"
     3description: Report a bug
     4title: "(short issue description)"
     5labels: [bug, needs-triage]
     6assignees: []
     7body:
     8  - type: checkboxes
     9    id: ack
    10    attributes:
    11      label: Acknowledgements
    12      options:
    13        - label: I have searched (https://github.com/aws/aws-sdk/issues?q=is%3Aissue) for past instances of this issue
    14          required: true
    15        - label: I have verified all of my SDK modules are up-to-date (you can perform a bulk update with `go get -u github.com/aws/aws-sdk-go-v2/...`)
    16          required: true
    17
    18  - type: textarea
    19    id: description
    20    attributes:
    21      label: Describe the bug
    22      description: What is the problem? A clear and concise description of the bug.
    23    validations:
    24      required: true
    25  - type: textarea
    26    id: expected
    27    attributes:
    28      label: Expected Behavior
    29      description: |
    30        What did you expect to happen?
    31    validations:
    32      required: true
    33  - type: textarea
    34    id: current
    35    attributes:
    36      label: Current Behavior
    37      description: |
    38        What actually happened?
    39
    40        Please include full errors, uncaught exceptions, stack traces, and relevant logs.
    41        If service responses are relevant, please include wire logs.
    42    validations:
    43      required: true
    44  - type: textarea
    45    id: reproduction
    46    attributes:
    47      label: Reproduction Steps
    48      description: |
    49        Provide a self-contained, concise snippet of code that can be used to reproduce the issue.
    50        For more complex issues provide a repo with the smallest sample that reproduces the bug.
    51
    52        Avoid including business logic or unrelated code, it makes diagnosis more difficult.
    53        The code sample should be an SSCCE. See http://sscce.org/ for details. In short, please provide a code sample that we can copy/paste, run and reproduce.
    54    validations:
    55      required: true
    56  - type: textarea
    57    id: solution
    58    attributes:
    59      label: Possible Solution
    60      description: |
    61        Suggest a fix/reason for the bug
    62    validations:
    63      required: false
    64  - type: textarea
    65    id: context
    66    attributes:
    67      label: Additional Information/Context
    68      description: |
    69        Anything else that might be relevant for troubleshooting this bug. Providing context helps us come up with a solution that is most useful in the real world.
    70    validations:
    71      required: false
    72
    73  - type: textarea
    74    id: Go-sdk-version
    75    attributes:
    76      label: AWS Go SDK V2 Module Versions Used
    77      description: |
    78        Output of `go mod graph` or `go.mod` file listing the `github.com/aws/*` entries.
    79    validations:
    80      required: true
    81
    82  - type: input
    83    id: go-version
    84    attributes:
    85      label: Compiler and Version used
    86      description: output of the `go version` command
    87    validations:
    88      required: true
    89
    90  - type: input
    91    id: operating-system
    92    attributes:
    93      label: Operating System and version
    94    validations:
    95      required: true

View as plain text