From b71a8adba26b08af90c00de62e9fbd72a58936f8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 21 Nov 2025 16:32:14 +0000 Subject: [PATCH 1/5] Initial plan From 00da0619a3b25533743a3f2219dfa0c4c7201307 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 21 Nov 2025 16:42:25 +0000 Subject: [PATCH 2/5] Add comprehensive GitHub issue templates based on current issue categories Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/README.md | 140 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.yml | 108 ++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 14 +++ .github/ISSUE_TEMPLATE/documentation.yml | 88 +++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 95 ++++++++++++++ .github/ISSUE_TEMPLATE/question.yml | 81 ++++++++++++ .github/ISSUE_TEMPLATE/security.yml | 90 +++++++++++++ CONTRIBUTING.md | 14 +++ 8 files changed, 630 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/README.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/documentation.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 .github/ISSUE_TEMPLATE/question.yml create mode 100644 .github/ISSUE_TEMPLATE/security.yml diff --git a/.github/ISSUE_TEMPLATE/README.md b/.github/ISSUE_TEMPLATE/README.md new file mode 100644 index 00000000..03017d0d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/README.md @@ -0,0 +1,140 @@ +# Issue Templates + +This directory contains issue templates for the Wassette repository. These templates help ensure that issues contain all necessary information for efficient triage and resolution. + +## Available Templates + +### 🐛 Bug Report (`bug_report.yml`) +Use this template to report bugs, errors, or unexpected behavior in Wassette. + +**Includes:** +- Description of the bug +- Steps to reproduce +- Expected vs. actual behavior +- Error logs +- Version and system information +- Component details + +**Automatically adds label:** `bug` + +### ✨ Feature Request (`feature_request.yml`) +Use this template to propose new features or enhancements. + +**Includes:** +- Feature summary and motivation +- Proposed solution +- Feature area classification +- Alternative approaches +- Usage examples +- Breaking change assessment + +**Automatically adds label:** `enhancement` + +### 📚 Documentation Improvement (`documentation.yml`) +Use this template to suggest improvements to documentation or report documentation issues. + +**Includes:** +- Documentation type and location +- Issue type (missing, incorrect, unclear, etc.) +- Current content +- Suggested improvements + +**Automatically adds label:** `documentation` + +### ❓ Question / Help (`question.yml`) +Use this template to ask questions or get help using Wassette. + +**Includes:** +- Your question +- Topic area +- What you've tried +- Context and setup +- Relevant code or configuration + +**Automatically adds label:** `question` + +**Note:** For general discussions, consider using [GitHub Discussions](https://github.com/microsoft/wassette/discussions) instead. + +### 🔒 Security Issue (`security.yml`) +Use this template for non-sensitive security improvements or discussions. + +**Important:** For sensitive security vulnerabilities, use [GitHub's private vulnerability reporting](https://github.com/microsoft/wassette/security/advisories/new) instead of filing a public issue. + +**Includes:** +- Severity assessment +- Security category +- Potential impact +- Affected versions +- Suggested mitigation + +**Automatically adds label:** `security` + +## Template Configuration (`config.yml`) + +The `config.yml` file configures the issue template chooser and provides helpful links: + +- **Blank Issues:** Enabled (allows creating issues without templates when needed) +- **Contact Links:** + - GitHub Discussions for community questions + - Documentation site + - Private security reporting + - Code of Conduct + +## Best Practices + +### For Issue Reporters + +1. **Choose the right template** - Select the template that best matches your issue type +2. **Fill out all required fields** - These are marked with an asterisk (*) +3. **Be specific** - Provide detailed information to help maintainers understand your issue +4. **Search first** - Check if a similar issue already exists before creating a new one +5. **Follow up** - Respond to questions from maintainers to help resolve your issue + +### For Maintainers + +1. **Template Updates** - Keep templates aligned with evolving project needs +2. **Label Management** - Ensure labels specified in templates exist in the repository +3. **Triage Process** - Use template fields to quickly understand and categorize issues +4. **Documentation** - Keep CONTRIBUTING.md and other docs in sync with templates + +## Template Maintenance + +### Adding a New Template + +1. Create a new `.yml` file in this directory +2. Follow the GitHub issue form schema (see [documentation](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms)) +3. Test the template by creating a test issue +4. Update this README +5. Update CONTRIBUTING.md if needed + +### Modifying Existing Templates + +1. Edit the `.yml` file +2. Validate YAML syntax: `python3 -c "import yaml; yaml.safe_load(open('template.yml'))"` +3. Test changes by creating a test issue +4. Update this README if the changes are significant + +### Common Fields + +Most templates include these common elements: +- `name` - Template name shown in the issue chooser +- `description` - Brief description of when to use this template +- `title` - Default issue title prefix +- `labels` - Auto-applied labels +- `body` - Array of form fields (markdown, textarea, input, dropdown, checkboxes) + +## YAML Validation + +To validate all templates: + +```bash +for file in .github/ISSUE_TEMPLATE/*.yml; do + python3 -c "import yaml; yaml.safe_load(open('$file'))" && echo "✓ $file" || echo "✗ $file" +done +``` + +## Resources + +- [GitHub Issue Forms Documentation](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository) +- [Issue Form Schema Reference](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms) +- [Wassette Contributing Guidelines](../../CONTRIBUTING.md) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..1d19e693 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,108 @@ +name: Bug Report +description: Report a bug or unexpected behavior in Wassette +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to report a bug! Please fill out the sections below to help us understand and fix the issue. + + - type: textarea + id: description + attributes: + label: Description + description: A clear and concise description of what the bug is. + placeholder: Tell us what happened + validations: + required: true + + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps to Reproduce + description: Steps to reproduce the behavior + placeholder: | + 1. Run command '...' + 2. Load component '...' + 3. See error + validations: + required: true + + - type: textarea + id: expected-behavior + attributes: + label: Expected Behavior + description: What did you expect to happen? + placeholder: What should have happened + validations: + required: true + + - type: textarea + id: actual-behavior + attributes: + label: Actual Behavior + description: What actually happened? + placeholder: What actually happened + validations: + required: true + + - type: textarea + id: logs + attributes: + label: Error Logs + description: If applicable, add error messages or logs + placeholder: Paste error logs here + render: shell + + - type: input + id: version + attributes: + label: Wassette Version + description: What version of Wassette are you using? + placeholder: "e.g., 0.3.3, main branch" + validations: + required: true + + - type: dropdown + id: os + attributes: + label: Operating System + description: What operating system are you using? + options: + - Linux + - macOS + - Windows + - Other (please specify in additional context) + validations: + required: true + + - type: dropdown + id: installation-method + attributes: + label: Installation Method + description: How did you install Wassette? + options: + - Cargo (from crates.io) + - Built from source + - Homebrew + - WinGet + - Docker + - Other (please specify in additional context) + + - type: textarea + id: component-info + attributes: + label: Component Information + description: If the issue is related to a specific component, provide details + placeholder: | + Component name: + Component URI: + Component source (OCI/local/etc): + + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Add any other context about the problem here + placeholder: Any additional information that might help diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..edfb0499 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,14 @@ +blank_issues_enabled: true +contact_links: + - name: 💬 GitHub Discussions + url: https://github.com/microsoft/wassette/discussions + about: Ask questions and discuss ideas with the community + - name: 📖 Documentation + url: https://microsoft.github.io/wassette/ + about: Read the official Wassette documentation + - name: 🔒 Private Security Report + url: https://github.com/microsoft/wassette/security/advisories/new + about: Report a security vulnerability privately + - name: 💼 Microsoft Open Source Code of Conduct + url: https://opensource.microsoft.com/codeofconduct/ + about: Learn about our community guidelines diff --git a/.github/ISSUE_TEMPLATE/documentation.yml b/.github/ISSUE_TEMPLATE/documentation.yml new file mode 100644 index 00000000..665f14fe --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.yml @@ -0,0 +1,88 @@ +name: Documentation Improvement +description: Suggest improvements or report issues with documentation +title: "[Docs]: " +labels: ["documentation"] +body: + - type: markdown + attributes: + value: | + Thanks for helping improve Wassette's documentation! Clear docs help everyone. + + - type: dropdown + id: doc-type + attributes: + label: Documentation Type + description: What type of documentation needs improvement? + options: + - README + - Getting Started Guide + - Installation Instructions + - API Reference + - CLI Reference + - Architecture Documentation + - Design Documents + - Examples + - Contributing Guidelines + - Code Comments + - Other (please specify below) + validations: + required: true + + - type: input + id: doc-location + attributes: + label: Document Location + description: Which file or page needs updating? + placeholder: "e.g., docs/installation.md, README.md section 'Using Wassette'" + validations: + required: true + + - type: dropdown + id: issue-type + attributes: + label: Issue Type + description: What kind of documentation issue is this? + options: + - Missing information + - Incorrect information + - Outdated information + - Unclear explanation + - Typo or grammar + - Broken link + - Missing example + - Needs more detail + - Other (please specify below) + validations: + required: true + + - type: textarea + id: description + attributes: + label: Description + description: Describe the documentation issue or improvement + placeholder: What's wrong or what could be better? + validations: + required: true + + - type: textarea + id: current-content + attributes: + label: Current Content + description: If applicable, quote the current documentation that needs changing + placeholder: Paste the current text here + render: markdown + + - type: textarea + id: suggested-content + attributes: + label: Suggested Improvement + description: How should this be changed or what should be added? + placeholder: Provide your suggested text or outline + render: markdown + + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Any other context, screenshots, or references + placeholder: Links, screenshots, or additional details diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..d72e11bd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,95 @@ +name: Feature Request +description: Suggest a new feature or enhancement for Wassette +title: "[Feature]: " +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + Thanks for suggesting a feature! Please provide as much detail as possible to help us understand your request. + + - type: textarea + id: summary + attributes: + label: Feature Summary + description: A clear and concise description of what you want to happen + placeholder: Describe the feature you'd like to see + validations: + required: true + + - type: textarea + id: motivation + attributes: + label: Motivation + description: Why is this feature needed? What problem does it solve? + placeholder: | + What problem does this solve? + How would this improve Wassette? + validations: + required: true + + - type: textarea + id: proposed-solution + attributes: + label: Proposed Solution + description: How do you envision this feature working? + placeholder: | + Describe your proposed implementation or approach + Include examples if applicable + + - type: dropdown + id: feature-area + attributes: + label: Feature Area + description: Which area of Wassette does this feature relate to? + options: + - Core Runtime + - Component Loading + - Permission System + - MCP Protocol + - CLI Tools + - Documentation + - Registry + - Security + - Testing + - GitHub Actions Integration + - Other (please specify in additional context) + validations: + required: true + + - type: textarea + id: alternatives + attributes: + label: Alternatives Considered + description: Have you considered any alternative solutions or workarounds? + placeholder: Describe alternatives you've considered + + - type: textarea + id: examples + attributes: + label: Usage Examples + description: Provide examples of how this feature would be used + placeholder: | + ```bash + # Example command or usage + wassette ... + ``` + render: shell + + - type: checkboxes + id: breaking-changes + attributes: + label: Breaking Changes + description: Would this feature introduce any breaking changes? + options: + - label: This feature would require breaking changes + - label: This feature maintains backward compatibility + + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Add any other context, screenshots, or references + placeholder: | + Links to related issues, discussions, or external resources + Screenshots or diagrams if applicable diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml new file mode 100644 index 00000000..b02532e5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -0,0 +1,81 @@ +name: Question / Help +description: Ask a question or get help using Wassette +title: "[Question]: " +labels: ["question"] +body: + - type: markdown + attributes: + value: | + Have a question? We're here to help! Please check the [documentation](https://microsoft.github.io/wassette/) first. + + For general discussion, consider using [GitHub Discussions](https://github.com/microsoft/wassette/discussions). + + - type: textarea + id: question + attributes: + label: Your Question + description: What would you like to know? + placeholder: Ask your question here + validations: + required: true + + - type: dropdown + id: topic + attributes: + label: Topic Area + description: What is your question about? + options: + - Getting Started + - Installation + - Component Development + - Component Loading + - Permissions and Security + - MCP Protocol + - CLI Usage + - Configuration + - Performance + - Troubleshooting + - Best Practices + - Examples + - Other (please specify below) + validations: + required: true + + - type: textarea + id: what-tried + attributes: + label: What Have You Tried? + description: What steps have you already taken to solve this? + placeholder: | + - Checked documentation at... + - Tried command... + - Searched issues for... + + - type: textarea + id: context + attributes: + label: Context + description: Provide any relevant context about your setup or use case + placeholder: | + - Wassette version: + - Operating system: + - What you're trying to accomplish: + + - type: textarea + id: code-config + attributes: + label: Relevant Code or Configuration + description: If applicable, share relevant code, commands, or configuration + placeholder: Paste code or configuration here + render: shell + + - type: checkboxes + id: checklist + attributes: + label: Pre-submission Checklist + description: Before submitting, please verify + options: + - label: I have searched existing issues and discussions + required: true + - label: I have checked the documentation + required: true diff --git a/.github/ISSUE_TEMPLATE/security.yml b/.github/ISSUE_TEMPLATE/security.yml new file mode 100644 index 00000000..13c3eb6b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/security.yml @@ -0,0 +1,90 @@ +name: Security Issue +description: Report a security vulnerability (use private reporting for sensitive issues) +title: "[Security]: " +labels: ["security"] +body: + - type: markdown + attributes: + value: | + ## ⚠️ Important Security Notice + + **For sensitive security vulnerabilities**, please use [GitHub's private vulnerability reporting](https://github.com/microsoft/wassette/security/advisories/new) instead of filing a public issue. + + See our [Security Policy](https://github.com/microsoft/wassette/security/policy) for more information. + + Use this template only for non-sensitive security improvements or discussions. + + - type: dropdown + id: severity + attributes: + label: Issue Severity + description: How would you rate the severity? + options: + - Low - Security improvement suggestion + - Medium - Potential security concern + - High - Should use private reporting + - Critical - MUST use private reporting + validations: + required: true + + - type: textarea + id: description + attributes: + label: Description + description: Describe the security concern or improvement + placeholder: | + Please describe the security issue or improvement suggestion. + DO NOT include sensitive exploit details in public issues. + validations: + required: true + + - type: dropdown + id: category + attributes: + label: Security Category + description: What type of security issue is this? + options: + - Permission System + - Component Isolation + - Network Access Control + - Authentication/Authorization + - Input Validation + - Dependency Security + - Documentation/Best Practices + - Policy Configuration + - Secret Management + - Other (please specify) + validations: + required: true + + - type: textarea + id: impact + attributes: + label: Potential Impact + description: What is the potential impact if this is exploited? + placeholder: Describe the potential impact or risk + + - type: textarea + id: affected-versions + attributes: + label: Affected Versions + description: Which versions of Wassette are affected? + placeholder: "e.g., all versions, v0.3.0 and later" + + - type: textarea + id: mitigation + attributes: + label: Suggested Mitigation + description: If you have suggestions for fixing or mitigating this issue + placeholder: How could this be addressed? + + - type: checkboxes + id: responsible-disclosure + attributes: + label: Responsible Disclosure + description: Please confirm + options: + - label: I understand that sensitive vulnerabilities should use private reporting + required: true + - label: This issue does not contain exploit code or sensitive details + required: true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c282e9a1..c077f140 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,6 +9,20 @@ When you submit a pull request, a CLA-bot will automatically determine whether y to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA. +## Reporting Issues + +We use GitHub issue templates to help you provide the right information. When [creating a new issue](https://github.com/microsoft/wassette/issues/new/choose), please select the appropriate template: + +- **Bug Report** - Report a bug or unexpected behavior +- **Feature Request** - Suggest a new feature or enhancement +- **Documentation Improvement** - Help improve our docs +- **Question / Help** - Ask questions or get help +- **Security Issue** - Report security concerns (use private reporting for sensitive vulnerabilities) + +For general discussions and questions, consider using [GitHub Discussions](https://github.com/microsoft/wassette/discussions). + +## Code of Conduct + This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. \ No newline at end of file From f715546276add5e6467c4ba9084f129733bb86d0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 21 Nov 2025 16:46:02 +0000 Subject: [PATCH 3/5] Address code review feedback - remove trailing newline and render hints Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 1 - .github/ISSUE_TEMPLATE/question.yml | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index edfb0499..e86595dc 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -11,4 +11,4 @@ contact_links: about: Report a security vulnerability privately - name: 💼 Microsoft Open Source Code of Conduct url: https://opensource.microsoft.com/codeofconduct/ - about: Learn about our community guidelines + about: Learn about our community guidelines \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index d72e11bd..34906b5e 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -74,7 +74,6 @@ body: # Example command or usage wassette ... ``` - render: shell - type: checkboxes id: breaking-changes diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml index b02532e5..78992d99 100644 --- a/.github/ISSUE_TEMPLATE/question.yml +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -67,7 +67,6 @@ body: label: Relevant Code or Configuration description: If applicable, share relevant code, commands, or configuration placeholder: Paste code or configuration here - render: shell - type: checkboxes id: checklist From 8d44bec029bf427a1b2720b145da3f83bd9babc9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 21 Nov 2025 16:48:00 +0000 Subject: [PATCH 4/5] Remove all restrictive render hints to allow auto-detection Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 - .github/ISSUE_TEMPLATE/documentation.yml | 2 -- 2 files changed, 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 1d19e693..2787d524 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -53,7 +53,6 @@ body: label: Error Logs description: If applicable, add error messages or logs placeholder: Paste error logs here - render: shell - type: input id: version diff --git a/.github/ISSUE_TEMPLATE/documentation.yml b/.github/ISSUE_TEMPLATE/documentation.yml index 665f14fe..e0c8b4f6 100644 --- a/.github/ISSUE_TEMPLATE/documentation.yml +++ b/.github/ISSUE_TEMPLATE/documentation.yml @@ -70,7 +70,6 @@ body: label: Current Content description: If applicable, quote the current documentation that needs changing placeholder: Paste the current text here - render: markdown - type: textarea id: suggested-content @@ -78,7 +77,6 @@ body: label: Suggested Improvement description: How should this be changed or what should be added? placeholder: Provide your suggested text or outline - render: markdown - type: textarea id: additional-context From 13c734d14f4f9451a36e83798524898f2467b70c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 21 Nov 2025 16:50:44 +0000 Subject: [PATCH 5/5] Fix URL consistency and shell script quoting in documentation Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/README.md | 2 +- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/ISSUE_TEMPLATE/question.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/README.md b/.github/ISSUE_TEMPLATE/README.md index 03017d0d..f91086ab 100644 --- a/.github/ISSUE_TEMPLATE/README.md +++ b/.github/ISSUE_TEMPLATE/README.md @@ -129,7 +129,7 @@ To validate all templates: ```bash for file in .github/ISSUE_TEMPLATE/*.yml; do - python3 -c "import yaml; yaml.safe_load(open('$file'))" && echo "✓ $file" || echo "✗ $file" + python3 -c "import yaml; yaml.safe_load(open(\"$file\"))" && echo "✓ $file" || echo "✗ $file" done ``` diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index e86595dc..7543cd3c 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -4,7 +4,7 @@ contact_links: url: https://github.com/microsoft/wassette/discussions about: Ask questions and discuss ideas with the community - name: 📖 Documentation - url: https://microsoft.github.io/wassette/ + url: https://microsoft.github.io/wassette/latest/ about: Read the official Wassette documentation - name: 🔒 Private Security Report url: https://github.com/microsoft/wassette/security/advisories/new diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml index 78992d99..2c784b38 100644 --- a/.github/ISSUE_TEMPLATE/question.yml +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -6,7 +6,7 @@ body: - type: markdown attributes: value: | - Have a question? We're here to help! Please check the [documentation](https://microsoft.github.io/wassette/) first. + Have a question? We're here to help! Please check the [documentation](https://microsoft.github.io/wassette/latest/) first. For general discussion, consider using [GitHub Discussions](https://github.com/microsoft/wassette/discussions).