From 76c84c605dea27f9291eb4d660cbe780f07f0ecc Mon Sep 17 00:00:00 2001 From: mauro-balades Date: Sun, 1 Sep 2024 11:56:26 +0200 Subject: [PATCH] chore: Update subproject commit reference in l10n --- .github/ISSUE_TEMPLATE/bug_report.yml | 17 ++++++++++++- .github/advanced-issue-labeler.yml | 16 ------------ .github/workflows/issue-create.yml | 35 --------------------------- 3 files changed, 16 insertions(+), 52 deletions(-) delete mode 100644 .github/advanced-issue-labeler.yml delete mode 100644 .github/workflows/issue-create.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 80e542ecf..96b32a06d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,10 +1,25 @@ name: Bug Report description: File a bug report +labe body: - type: markdown attributes: value: | Thank you for filing a bug report. + + ## Important + - Please search existing issues to avoid creating duplicates. + - For enhancement requests, please use GitHub Discussions. + - Please fill out the template below to the best of your ability. + - type: checkboxes + id: captchas + attributes: + label: Captchas + description: Just making sure you did actually read the instructions. + options: + - label: I have read the instructions. + - label: I have searched existing issues and avoided creating duplicates. + - label: I am not filing an enhancement request. - type: textarea id: what-happened attributes: @@ -19,7 +34,7 @@ body: label: Reproducible? description: Is this issue reproducible on Firefox? options: - - label: I have checked that this issue cannot be reproduced on Mozilla Firefox. + - label: I have checked that this issue cannot be reproduced on Mozilla Firefox. - type: input id: version attributes: diff --git a/.github/advanced-issue-labeler.yml b/.github/advanced-issue-labeler.yml deleted file mode 100644 index 8ecac9e9e..000000000 --- a/.github/advanced-issue-labeler.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -# Keep up to date with workflows/issue-create.yml !!! - -policy: - - section: - - id: [severity] - label: - - name: 'kind: low severity' - keys: ['Low'] - - name: 'kind: medium severity' - keys: ['Medium'] - - name: 'kind: high severity' - keys: ['High'] - - name: 'kind: critical severity' - keys: ['Critical'] - diff --git a/.github/workflows/issue-create.yml b/.github/workflows/issue-create.yml deleted file mode 100644 index b4cd54cba..000000000 --- a/.github/workflows/issue-create.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Issue labeler -on: - issues: - types: [ opened ] - -permissions: - contents: read - -jobs: - label-component: - runs-on: ubuntu-latest - - permissions: - # required for all workflows - issues: write - - # only required for workflows in private repositories - actions: read - contents: read - - steps: - - uses: actions/checkout@v3 - - - name: Parse issue form - uses: stefanbuck/github-issue-parser@v3 - id: issue-parser - with: - template-path: .github/ISSUE_TEMPLATE/bug_report.yml - - - name: Set labels based on severity field - uses: redhat-plumbers-in-action/advanced-issue-labeler@v3 - with: - issue-form: ${{ steps.issue-parser.outputs.jsonString }} - token: ${{ secrets.GITHUB_TOKEN }} - section: severity