code.gitea.io/gitea@v1.21.7/.github/ISSUE_TEMPLATE/bug-report.yaml (about)

     1  name: Bug Report
     2  description: Found something you weren't expecting? Report it here!
     3  labels: ["kind/bug"]
     4  body:
     5    - type: markdown
     6      attributes:
     7        value: |
     8          NOTE: If your issue is a security concern, please send an email to security@gitea.io instead of opening a public issue.
     9    - type: markdown
    10      attributes:
    11        value: |
    12          1. Please speak English, this is the language all maintainers can speak and write.
    13          2. Please ask questions or configuration/deploy problems on our Discord
    14             server (https://discord.gg/gitea) or forum (https://discourse.gitea.io).
    15          3. Make sure you are using the latest release and
    16             take a moment to check that your issue hasn't been reported before.
    17          4. Make sure it's not mentioned in the FAQ (https://docs.gitea.com/help/faq)
    18          5. It's really important to provide pertinent details and logs (https://docs.gitea.com/help/support),
    19             incomplete details will be handled as an invalid report.
    20    - type: textarea
    21      id: description
    22      attributes:
    23        label: Description
    24        description: |
    25          Please provide a description of your issue here, with a URL if you were able to reproduce the issue (see below)
    26          If you are using a proxy or a CDN (e.g. Cloudflare) in front of Gitea, please disable the proxy/CDN fully and access Gitea directly to confirm the issue still persists without those services.
    27    - type: input
    28      id: gitea-ver
    29      attributes:
    30        label: Gitea Version
    31        description: Gitea version (or commit reference) of your instance
    32      validations:
    33        required: true
    34    - type: dropdown
    35      id: can-reproduce
    36      attributes:
    37        label: Can you reproduce the bug on the Gitea demo site?
    38        description: |
    39          If so, please provide a URL in the Description field
    40          URL of Gitea demo: https://try.gitea.io
    41        options:
    42          - "Yes"
    43          - "No"
    44      validations:
    45        required: true
    46    - type: markdown
    47      attributes:
    48        value: |
    49          It's really important to provide pertinent logs
    50          Please read https://docs.gitea.com/administration/logging-config#collecting-logs-for-help
    51          In addition, if your problem relates to git commands set `RUN_MODE=dev` at the top of app.ini
    52    - type: input
    53      id: logs
    54      attributes:
    55        label: Log Gist
    56        description: Please provide a gist URL of your logs, with any sensitive information (e.g. API keys) removed/hidden
    57    - type: textarea
    58      id: screenshots
    59      attributes:
    60        label: Screenshots
    61        description: If this issue involves the Web Interface, please provide one or more screenshots
    62    - type: input
    63      id: git-ver
    64      attributes:
    65        label: Git Version
    66        description: The version of git running on the server
    67    - type: input
    68      id: os-ver
    69      attributes:
    70        label: Operating System
    71        description: The operating system you are using to run Gitea
    72    - type: textarea
    73      id: run-info
    74      attributes:
    75        label: How are you running Gitea?
    76        description: |
    77          Please include information on whether you built Gitea yourself, used one of our downloads, are using https://try.gitea.io or are using some other package
    78          Please also tell us how you are running Gitea, e.g. if it is being run from docker, a command-line, systemd etc.
    79          If you are using a package or systemd tell us what distribution you are using
    80      validations:
    81        required: true
    82    - type: dropdown
    83      id: database
    84      attributes:
    85        label: Database
    86        description: What database system are you running?
    87        options:
    88          - PostgreSQL
    89          - MySQL/MariaDB
    90          - MSSQL
    91          - SQLite