From 613a6b830c9c6bbf82ef90f696ab898cfc1a47bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Wed, 12 Feb 2025 22:15:39 +0100 Subject: [PATCH 1/9] chore: add links to Quarto CLI repository --- .github/ISSUE_TEMPLATE/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..812f2a82 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: true +contact_links: + - name: Issue with Quarto CLI + url: https://github.com/quarto-dev/quarto-cli + about: Please report issues with the Quarto CLI here + - name: Quarto Community Support + url: https://github.com/quarto-dev/quarto-cli/discussions/categories/q-a + about: Please ask and answer questions in our Discussion board From 66208972aeabc0d812e11d969a92103ef0c8ad5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Wed, 12 Feb 2025 22:23:38 +0100 Subject: [PATCH 2/9] chore: add issue template --- .github/ISSUE_TEMPLATE/bug.yml | 57 ++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000..c6399f62 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,57 @@ +name: Bug report +description: Report an error or unexpected behavior with Visual Editor or Quarto VSCode/Positron IDEs +labels: [bug] + +body: + - type: markdown + attributes: + value: | + Welcome to the Quarto GitHub repository! + We are always happy to hear feedback from our users. + + This is the repository for the Visual Editor and the Quarto extension VSCode/Positron. + + - If you're reporting an issue with the **VS Code extension** or the **Visual Editor**, **you are in thr right place**. + - If you're reporting an issue with **Quarto CLI**, please visit https://github.com/quarto-dev/quarto-cli + - If you're reporting an issue inside **RStudio**, please visit https://github.com/rstudio/rstudio + - If you're reporting an issue inside **Positron**, please visit https://github.com/posit-dev/positron + + If you want to ask for help, please use the [Q&A GitHub Discussions](https://github.com/quarto-dev/quarto-cli/discussions/categories/q-a). + + Thank you for using Quarto! + + - type: textarea + attributes: + label: Bug description + description: Description of the bug. + placeholder: Please describe the bug here. + + - type: textarea + attributes: + label: Steps to reproduce + description: | + Tell us how to reproduce this bug. + Please include a minimal, fully reproducible example as a self-contained Quarto document or a link to a Git repository. + + - type: textarea + attributes: + label: Expected behavior + description: Tell us what should happen. + + - type: textarea + attributes: + label: Actual behavior + description: Tell us what happens instead. + + - type: textarea + attributes: + label: Your environment + description: | + Please document the IDE (_e.g._ RStudio, VSCode, NVim), its version, and the operating system you're running (_e.g., MacOS Ventura 13.4, Windows 11, Linux Debian 11, _etc._). + placeholder: | + - IDE: RStudio 2023.03.1+446 | VSCode | Positron + - OS: MacOS Ventura 13.4 | Windows | Ubuntu + + - type: markdown + attributes: + value: "_Thanks for submitting this bug report!_" From fbca242044ae957ca7f4fd44615666a856c09c2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Wed, 12 Feb 2025 22:28:30 +0100 Subject: [PATCH 3/9] refactor: Discussion as item --- .github/ISSUE_TEMPLATE/bug.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index c6399f62..f5057e06 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -15,8 +15,7 @@ body: - If you're reporting an issue with **Quarto CLI**, please visit https://github.com/quarto-dev/quarto-cli - If you're reporting an issue inside **RStudio**, please visit https://github.com/rstudio/rstudio - If you're reporting an issue inside **Positron**, please visit https://github.com/posit-dev/positron - - If you want to ask for help, please use the [Q&A GitHub Discussions](https://github.com/quarto-dev/quarto-cli/discussions/categories/q-a). + - If you want to ask for help, please use the [Q&A GitHub Discussions](https://github.com/quarto-dev/quarto-cli/discussions/categories/q-a). Thank you for using Quarto! From f1f6f13da6bef61a6841c43cb5cbb0fb0a735f7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Wed, 12 Feb 2025 22:36:43 +0100 Subject: [PATCH 4/9] fix: rm bug reproduction instructions --- .github/ISSUE_TEMPLATE/bug.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index f5057e06..055f035c 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -29,8 +29,7 @@ body: attributes: label: Steps to reproduce description: | - Tell us how to reproduce this bug. - Please include a minimal, fully reproducible example as a self-contained Quarto document or a link to a Git repository. + Tell us how to reproduce this bug. - type: textarea attributes: From 1bfab5622708e220c5b8982b2a3f91f43cd2a87a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Wed, 12 Feb 2025 22:37:39 +0100 Subject: [PATCH 5/9] chore: Swap labels for expected and actual behavior --- .github/ISSUE_TEMPLATE/bug.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 055f035c..bcef5f10 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -33,13 +33,13 @@ body: - type: textarea attributes: - label: Expected behavior - description: Tell us what should happen. + label: Actual behavior + description: Tell us what happens instead. - type: textarea attributes: - label: Actual behavior - description: Tell us what happens instead. + label: Expected behavior + description: Tell us what should happen. - type: textarea attributes: From e44b43fb7be6092f87bb0bc94338859e6200a05a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Wed, 12 Feb 2025 23:41:02 +0100 Subject: [PATCH 6/9] fix: apply suggestion Co-authored-by: Julia Silge --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index bcef5f10..fca99c62 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -9,7 +9,7 @@ body: Welcome to the Quarto GitHub repository! We are always happy to hear feedback from our users. - This is the repository for the Visual Editor and the Quarto extension VSCode/Positron. + This is the repository for the Visual Editor and the Quarto extension for VSCode and Positron. - If you're reporting an issue with the **VS Code extension** or the **Visual Editor**, **you are in thr right place**. - If you're reporting an issue with **Quarto CLI**, please visit https://github.com/quarto-dev/quarto-cli From a67b6f3c02b22419a07cba75a6586f4bd00f37a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Wed, 12 Feb 2025 23:41:11 +0100 Subject: [PATCH 7/9] fix: apply suggestion Co-authored-by: Julia Silge --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index fca99c62..ec05be4b 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -11,7 +11,7 @@ body: This is the repository for the Visual Editor and the Quarto extension for VSCode and Positron. - - If you're reporting an issue with the **VS Code extension** or the **Visual Editor**, **you are in thr right place**. + - If you're reporting an issue with the **VS Code extension** or the **Visual Editor**, you are in the right place! 🎉 - If you're reporting an issue with **Quarto CLI**, please visit https://github.com/quarto-dev/quarto-cli - If you're reporting an issue inside **RStudio**, please visit https://github.com/rstudio/rstudio - If you're reporting an issue inside **Positron**, please visit https://github.com/posit-dev/positron From a39930c61284971cb09ff49df14c26596ed2302b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Wed, 12 Feb 2025 23:41:22 +0100 Subject: [PATCH 8/9] fix: apply suggestion Co-authored-by: Julia Silge --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index ec05be4b..b129159d 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -15,7 +15,7 @@ body: - If you're reporting an issue with **Quarto CLI**, please visit https://github.com/quarto-dev/quarto-cli - If you're reporting an issue inside **RStudio**, please visit https://github.com/rstudio/rstudio - If you're reporting an issue inside **Positron**, please visit https://github.com/posit-dev/positron - - If you want to ask for help, please use the [Q&A GitHub Discussions](https://github.com/quarto-dev/quarto-cli/discussions/categories/q-a). + - If you want to ask for help with using Quarto, please use the [Q&A GitHub Discussions](https://github.com/quarto-dev/quarto-cli/discussions/categories/q-a). Thank you for using Quarto! From 7ea0077f3599801dcab4286028340324f7c5a5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Wed, 12 Feb 2025 23:41:33 +0100 Subject: [PATCH 9/9] fix: apply suggestion Co-authored-by: Julia Silge --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index b129159d..e51a0d0a 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -45,7 +45,7 @@ body: attributes: label: Your environment description: | - Please document the IDE (_e.g._ RStudio, VSCode, NVim), its version, and the operating system you're running (_e.g., MacOS Ventura 13.4, Windows 11, Linux Debian 11, _etc._). + Please document the IDE (_e.g._ RStudio, Positron, VSCode, NVim), its version, and the operating system you're running (_e.g., MacOS Ventura 13.4, Windows 11, Linux Debian 11, _etc._). placeholder: | - IDE: RStudio 2023.03.1+446 | VSCode | Positron - OS: MacOS Ventura 13.4 | Windows | Ubuntu