From 45f1b08497521ee50603251e8e6d70564fbf1a28 Mon Sep 17 00:00:00 2001 From: Patrick Michalik <120058021+patrickmichalik@users.noreply.github.com> Date: Sat, 7 Oct 2023 15:45:13 +0200 Subject: [PATCH] =?UTF-8?q?Update=20=E2=80=9CBug=20report=E2=80=9D=20issue?= =?UTF-8?q?=20template,=20remove=20=E2=80=9CHandle=20stale=20issues?= =?UTF-8?q?=E2=80=9D=20workflow,=20and=20more?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/bug-report.yml | 37 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.md | 34 --------------------- .github/ISSUE_TEMPLATE/config.yml | 5 +++ .github/workflows/handle-stale-issues.yml | 16 ---------- 4 files changed, 42 insertions(+), 50 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/workflows/handle-stale-issues.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 000000000..fe8072b73 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,37 @@ +name: Bug report +description: Report unexpected behavior. +body: + - type: textarea + attributes: + label: How to reproduce + description: Please provide a detailed description of how to reproduce the bug. + validations: + required: true + - type: textarea + attributes: + label: Observed behavior + validations: + required: true + - type: textarea + attributes: + label: Expected behavior + validations: + required: true + - type: dropdown + attributes: + label: Vico version(s) + description: If you’re using an outdated version, please try updating Vico first. + multiple: true + options: + - Latest stable version + - Latest unstable version + validations: + required: true + - type: input + attributes: + label: Android version(s) + validations: + required: true + - type: textarea + attributes: + label: Additional information diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 7578f8876..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "" -labels: bug -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**Module** - -- [ ] `compose` -- [ ] `views` -- [ ] `compose-m2` -- [ ] `compose-m3` -- [ ] `core` (select if none of the above apply) - -**To reproduce** -Steps to reproduce the behavior. - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Android versions** -Versions of Android where the bug occurs. - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..6f33698aa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Something else + about: Please create a discussion. + url: https://github.com/patrykandpatrick/vico/discussions/new/choose diff --git a/.github/workflows/handle-stale-issues.yml b/.github/workflows/handle-stale-issues.yml deleted file mode 100644 index 66f73613c..000000000 --- a/.github/workflows/handle-stale-issues.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Handle stale issues -on: - workflow_dispatch: - schedule: - - cron: 0 0 * * * -jobs: - handle-stale-issues: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v8 - with: - days-before-stale: 28 - exempt-issue-labels: bug, enhancement - stale-issue-message: >- - There hasn’t been any activity here for four weeks. If no activity occurs over the next - week, this issue will be closed as stale.