From 5ca8a3e342d3c744729cbed8a88e2104f28a1ad5 Mon Sep 17 00:00:00 2001 From: "Joseph T. Lyons" Date: Mon, 7 Apr 2025 13:47:12 -0400 Subject: [PATCH] Add issue templates for newer flagship features (#28250) Release Notes: - N/A --- .../00_edit_predictions_bug_report.yml | 51 +++++++++++++++++++ ...a_bug_report.yml => 01_git_bug_report.yml} | 8 +-- .../ISSUE_TEMPLATE/02_agent_bug_report.yml | 51 +++++++++++++++++++ .../{1_bug_report.yml => 10_bug_report.yml} | 0 ...2_crash_report.yml => 11_crash_report.yml} | 0 5 files changed, 106 insertions(+), 4 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/00_edit_predictions_bug_report.yml rename .github/ISSUE_TEMPLATE/{0_agent_beta_bug_report.yml => 01_git_bug_report.yml} (90%) create mode 100644 .github/ISSUE_TEMPLATE/02_agent_bug_report.yml rename .github/ISSUE_TEMPLATE/{1_bug_report.yml => 10_bug_report.yml} (100%) rename .github/ISSUE_TEMPLATE/{2_crash_report.yml => 11_crash_report.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/00_edit_predictions_bug_report.yml b/.github/ISSUE_TEMPLATE/00_edit_predictions_bug_report.yml new file mode 100644 index 0000000000..a9edd07689 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/00_edit_predictions_bug_report.yml @@ -0,0 +1,51 @@ +name: Edit Predictions +description: There is a bug related to Edit Predictions in Zed +type: "Bug" +labels: ["ai", "inline completion", "zeta"] +title: "Edit Predictions: " +body: + - type: textarea + attributes: + label: Summary + description: Describe the bug with a one line summary, and provide detailed reproduction steps + value: | + + + + Steps to trigger the problem: + 1. + 2. + 3. + + Actual Behavior: + + Expected Behavior: + + validations: + required: true + - type: textarea + id: environment + attributes: + label: Zed Version and System Specs + description: 'Open Zed, and in the command palette select "zed: Copy System Specs Into Clipboard"' + placeholder: | + Output of "zed: Copy System Specs Into Clipboard" + validations: + required: true + - type: textarea + attributes: + label: If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue. + description: | + macOS: `~/Library/Logs/Zed/Zed.log` + Linux: `~/.local/share/zed/logs/Zed.log` or $XDG_DATA_HOME + If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000. + value: | +
Zed.log + + + ``` + + ``` +
+ validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/0_agent_beta_bug_report.yml b/.github/ISSUE_TEMPLATE/01_git_bug_report.yml similarity index 90% rename from .github/ISSUE_TEMPLATE/0_agent_beta_bug_report.yml rename to .github/ISSUE_TEMPLATE/01_git_bug_report.yml index acd809770a..90943a792f 100644 --- a/.github/ISSUE_TEMPLATE/0_agent_beta_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/01_git_bug_report.yml @@ -1,8 +1,8 @@ -name: Agent Beta -description: There is a bug related to new Agent Panel in Zed +name: Git +description: There is a bug related to Git features in Zed type: "Bug" -labels: [agent, ai] -title: "Agent Beta:
" +labels: ["git"] +title: "Git: " body: - type: textarea attributes: diff --git a/.github/ISSUE_TEMPLATE/02_agent_bug_report.yml b/.github/ISSUE_TEMPLATE/02_agent_bug_report.yml new file mode 100644 index 0000000000..e74b7595a3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02_agent_bug_report.yml @@ -0,0 +1,51 @@ +name: Agent Panel +description: There is a bug related to the Agent Panel in Zed +type: "Bug" +labels: ["agent", "ai"] +title: "Agent Panel: " +body: + - type: textarea + attributes: + label: Summary + description: Describe the bug with a one line summary, and provide detailed reproduction steps + value: | + + + + Steps to trigger the problem: + 1. + 2. + 3. + + Actual Behavior: + + Expected Behavior: + + validations: + required: true + - type: textarea + id: environment + attributes: + label: Zed Version and System Specs + description: 'Open Zed, and in the command palette select "zed: Copy System Specs Into Clipboard"' + placeholder: | + Output of "zed: Copy System Specs Into Clipboard" + validations: + required: true + - type: textarea + attributes: + label: If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue. + description: | + macOS: `~/Library/Logs/Zed/Zed.log` + Linux: `~/.local/share/zed/logs/Zed.log` or $XDG_DATA_HOME + If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000. + value: | +
Zed.log + + + ``` + + ``` +
+ validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.yml b/.github/ISSUE_TEMPLATE/10_bug_report.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/1_bug_report.yml rename to .github/ISSUE_TEMPLATE/10_bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/2_crash_report.yml b/.github/ISSUE_TEMPLATE/11_crash_report.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/2_crash_report.yml rename to .github/ISSUE_TEMPLATE/11_crash_report.yml