diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index fcc8bdd..90a5772 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -1,6 +1,8 @@ name: Bug report description: Create a report title: "[Bug]: " +labels: + - bug body: - type: textarea @@ -19,10 +21,14 @@ body: - type: textarea attributes: - label: The entire console log, including python version information, webui version, commit hash, commandline arguments and error traces. + label: Screenshots + description: Screenshots related to the issue. + + - type: textarea + attributes: + label: Console logs, from start to end. description: | The full console log of your terminal. - From `Python ..., Version: ..., Commit hash: ...` to the end. placeholder: | Python ... Version: ... @@ -33,6 +39,11 @@ body: Launching Web UI with arguments: ... [-] ADetailer initialized. version: ... ... + ... + + Traceback (most recent call last): + ... + ... render: Shell validations: required: true diff --git a/.github/ISSUE_TEMPLATE/question.yaml b/.github/ISSUE_TEMPLATE/question.yaml new file mode 100644 index 0000000..3c79454 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.yaml @@ -0,0 +1,10 @@ +name: Question +description: Write a question +labels: + - question + +body: + - type: textarea + attributes: + label: Question + description: Please do not write bug reports or feature requests here. diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index e10f6ba..79ab8fa 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -9,5 +9,5 @@ jobs: steps: - uses: actions/stale@v8 with: - days-before-stale: 30 - days-before-close: 5 + days-before-stale: 23 + days-before-close: 3