From 7f3744b2ed9c7c646f9d55d8c13ba6723c75640d Mon Sep 17 00:00:00 2001 From: Kavya N <168478594+kavyamsft@users.noreply.github.com> Date: Thu, 21 May 2026 21:37:57 +0000 Subject: [PATCH 01/10] docs: add GitHub issue templates and refresh contribution docs Adds .github/ISSUE_TEMPLATE/ with bug_report, feature_request, documentation, and questions-feedback templates plus an issue chooser config.yml (disables blank issues, adds contact links for the user guide, security policy, and the azurelinux distro repo). Modeled on microsoft/azure-linux-image-tools#741 but tailored for azldev (CLI/version/Azure Linux target prompts). Also links the Azure Linux contribution philosophy in CONTRIBUTING.md and the report-issues guidance in README.md/SUPPORT.md. --- .github/ISSUE_TEMPLATE/bug_report.md | 40 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 8 ++++ .github/ISSUE_TEMPLATE/documentation.md | 22 +++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 33 ++++++++++++++++ .github/ISSUE_TEMPLATE/questions-feedback.md | 20 ++++++++++ CONTRIBUTING.md | 7 ++++ README.md | 2 +- SUPPORT.md | 2 +- 8 files changed, 132 insertions(+), 2 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/documentation.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/questions-feedback.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..db4bd832 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,40 @@ +--- +name: Bug report +about: Report a bug in azldev +title: "[Bug]: " +labels: bug +assignees: "" + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**azldev version** +Output from `azldev version`: + +**To Reproduce** +Steps to reproduce the behavior: + +1. Command line used (paste the full command): + +2. Relevant configuration or inputs: + +3. Any additional steps: + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Actual behavior** +What actually happened? Include error messages verbatim. + +**Logs / Output** +Please attach or paste relevant output (for example: `--verbose` logs, failing test output, stack traces). + +**Environment** +- Host OS and version (for example: Azure Linux 4.0, Ubuntu 24.04): +- Azure Linux version being targeted (for example: 4.0): +- Host architecture (`x86_64` / `arm64`): + +**Additional context** +Add any other context, screenshots, or related links here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..662ae1b3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: Security vulnerability + url: https://github.com/microsoft/azure-linux-dev-tools/security/policy + about: Please report security vulnerabilities privately via the Microsoft Security Response Center (see SECURITY.md). Do NOT open a public issue. + - name: Azure Linux distro issues + url: https://github.com/microsoft/azurelinux/issues + about: "For issues with Azure Linux itself (for example: distro packages, kernel, base image content), please file in the azurelinux repo." \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 00000000..53ec0903 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,22 @@ +--- +name: Documentation issue +about: Report a problem with docs or suggest a documentation improvement +title: "[Docs]: " +labels: documentation +assignees: "" + +--- + +**Which documentation page is affected?** +Provide the repository path(s) to the affected page(s). + +- Repo path: `docs/...` + +**What is wrong or missing?** +A clear and concise description of the issue (for example: incorrect information, broken link, outdated example, missing section, unclear wording). + +**Suggested fix** +If you have a suggestion for how the docs should read, share it here. + +**Additional context** +Add any other context, screenshots, or references that would help us improve the docs. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..e7963c7d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,33 @@ +--- +name: Feature request +about: Suggest a new feature or enhancement for azldev +title: "[Feature]: " +labels: enhancement +assignees: "" + +--- + +**azldev version** +Version you are currently using, if applicable (`azldev version`): + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +If it involves a CLI change, suggest it here: + +```bash +# proposed command usage +azldev ... +``` + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions, workarounds, or approaches you have considered. + +**Use case / impact** +Who benefits from this feature and how? + +**Additional context** +Add any other context, references, or screenshots about the feature request here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/questions-feedback.md b/.github/ISSUE_TEMPLATE/questions-feedback.md new file mode 100644 index 00000000..ebf9f94d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/questions-feedback.md @@ -0,0 +1,20 @@ +--- +name: Question / Feedback +about: Ask a general question or share feedback that is not a bug or feature request +title: "[Question]: " +labels: question +assignees: "" + +--- + +**Your question or feedback** +A clear and concise description of your question or feedback. + +**Environment (if relevant)** +- azldev version (`azldev version`): +- Host OS and architecture: +- Azure Linux version being targeted (for example: 4.0): +- Relevant command: + +**Additional context** +Add screenshots, output, or any other context that would help us answer. \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a4d85825..16e7528f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,12 @@ # Contribution Guidelines +## Azure Linux Contribution Philosophy and Best Practices + +Before contributing, please review our [Azure Linux contribution philosophy and best practices](https://aka.ms/azurelinux-contributing). It covers the principles we follow when accepting changes and other guidance that will help +your PR land smoothly. + +Guidelines specific to this repo can be found below. + ## Contributing License Agreement This project welcomes contributions and suggestions. Most contributions require you to agree to a diff --git a/README.md b/README.md index 4856b570..998d24a3 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ For development setup and workflow, please consult our [Developer Guide](./docs/ ## Getting Help Have questions, found a bug, or need a new feature? Open an issue in our [GitHub -repository](https://github.com/microsoft/azure-linux-dev-tools/issues/new). +repository](https://github.com/microsoft/azure-linux-dev-tools/issues/new). For guidance on how to file an issue, see [how to report issues](https://aka.ms/azurelinux-reportissues). For security issues, please see the [security policy](./SECURITY.md). diff --git a/SUPPORT.md b/SUPPORT.md index 1928fb05..952d7b0e 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -2,7 +2,7 @@ ## How to file issues and get help -This project uses [GitHub issues][gh-issue] to [track bugs][gh-bug] and [feature requests][gh-feature]. Please search the existing issues before filing new issues to avoid duplicates. For new topics, file your bug or feature request as a new issue. +This project uses [GitHub issues][gh-issue] to [track bugs][gh-bug] and [feature requests][gh-feature]. For guidance, see [how to report issues](https://aka.ms/azurelinux-reportissues). For questions about using this project, please consult our [User Guide](./docs/user). If you want to contribute to this project, please review our [Contribution Guidelines](./CONTRIBUTING.md) and our [Developer Guide](./docs/developer). From f55621f9626ba430a67ceaec6635944571979573 Mon Sep 17 00:00:00 2001 From: Kavya N <168478594+kavyamsft@users.noreply.github.com> Date: Thu, 21 May 2026 14:45:32 -0700 Subject: [PATCH 02/10] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 998d24a3..b8b3105e 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ For development setup and workflow, please consult our [Developer Guide](./docs/ ## Getting Help Have questions, found a bug, or need a new feature? Open an issue in our [GitHub -repository](https://github.com/microsoft/azure-linux-dev-tools/issues/new). For guidance on how to file an issue, see [how to report issues](https://aka.ms/azurelinux-reportissues). +repository](https://github.com/microsoft/azure-linux-dev-tools/issues/new/choose). For guidance on how to file an issue, see [how to report issues](https://aka.ms/azurelinux-reportissues). For security issues, please see the [security policy](./SECURITY.md). From a45f0c1a09faf8a8c8bebc80fbe0dea3fda0cfb4 Mon Sep 17 00:00:00 2001 From: Kavya N <168478594+kavyamsft@users.noreply.github.com> Date: Thu, 21 May 2026 14:56:36 -0700 Subject: [PATCH 03/10] Fix formatting in bug report template Removed newline at end of file and adjusted context prompt. --- .github/ISSUE_TEMPLATE/bug_report.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index db4bd832..385c628e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -3,7 +3,6 @@ name: Bug report about: Report a bug in azldev title: "[Bug]: " labels: bug -assignees: "" --- @@ -37,4 +36,4 @@ Please attach or paste relevant output (for example: `--verbose` logs, failing t - Host architecture (`x86_64` / `arm64`): **Additional context** -Add any other context, screenshots, or related links here. \ No newline at end of file +Add any other context, screenshots, or related links here. From f19953a863d91f6e96b2f26f3885991fab5af663 Mon Sep 17 00:00:00 2001 From: Kavya N <168478594+kavyamsft@users.noreply.github.com> Date: Thu, 21 May 2026 14:57:09 -0700 Subject: [PATCH 04/10] Fix formatting in issue template config --- .github/ISSUE_TEMPLATE/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 662ae1b3..d49e1c30 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -5,4 +5,5 @@ contact_links: about: Please report security vulnerabilities privately via the Microsoft Security Response Center (see SECURITY.md). Do NOT open a public issue. - name: Azure Linux distro issues url: https://github.com/microsoft/azurelinux/issues - about: "For issues with Azure Linux itself (for example: distro packages, kernel, base image content), please file in the azurelinux repo." \ No newline at end of file + about: "For issues with Azure Linux itself (for example: distro packages, kernel, base image content), please file in the azurelinux repo." + From f21f3e1d250ef7c59a069c04115aecd6b5cc78b7 Mon Sep 17 00:00:00 2001 From: Kavya N <168478594+kavyamsft@users.noreply.github.com> Date: Thu, 21 May 2026 14:57:29 -0700 Subject: [PATCH 05/10] Fix formatting issue in documentation issue template --- .github/ISSUE_TEMPLATE/documentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md index 53ec0903..e3c8fed4 100644 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -19,4 +19,4 @@ A clear and concise description of the issue (for example: incorrect information If you have a suggestion for how the docs should read, share it here. **Additional context** -Add any other context, screenshots, or references that would help us improve the docs. \ No newline at end of file +Add any other context, screenshots, or references that would help us improve the docs. From 699ad0db3565f0125247c2d14a53fe2240f33db9 Mon Sep 17 00:00:00 2001 From: Kavya N <168478594+kavyamsft@users.noreply.github.com> Date: Thu, 21 May 2026 14:58:03 -0700 Subject: [PATCH 06/10] Fix formatting in feature request template --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index e7963c7d..c74c3eee 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -30,4 +30,4 @@ A clear and concise description of any alternative solutions, workarounds, or ap Who benefits from this feature and how? **Additional context** -Add any other context, references, or screenshots about the feature request here. \ No newline at end of file +Add any other context, references, or screenshots about the feature request here. From b0caf4bdf640706330d132a1cadd81646c74452c Mon Sep 17 00:00:00 2001 From: Kavya N <168478594+kavyamsft@users.noreply.github.com> Date: Thu, 21 May 2026 14:58:34 -0700 Subject: [PATCH 07/10] Fix formatting in questions-feedback.md Removed unnecessary newline at the end of the file. --- .github/ISSUE_TEMPLATE/questions-feedback.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/questions-feedback.md b/.github/ISSUE_TEMPLATE/questions-feedback.md index ebf9f94d..77c7392a 100644 --- a/.github/ISSUE_TEMPLATE/questions-feedback.md +++ b/.github/ISSUE_TEMPLATE/questions-feedback.md @@ -3,7 +3,6 @@ name: Question / Feedback about: Ask a general question or share feedback that is not a bug or feature request title: "[Question]: " labels: question -assignees: "" --- @@ -17,4 +16,4 @@ A clear and concise description of your question or feedback. - Relevant command: **Additional context** -Add screenshots, output, or any other context that would help us answer. \ No newline at end of file +Add screenshots, output, or any other context that would help us answer. From 3f387676d9c970049c960cd645bc0e0261d2160a Mon Sep 17 00:00:00 2001 From: Kavya N <168478594+kavyamsft@users.noreply.github.com> Date: Thu, 21 May 2026 14:59:41 -0700 Subject: [PATCH 08/10] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index d49e1c30..afd9a6ac 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -6,4 +6,3 @@ contact_links: - name: Azure Linux distro issues url: https://github.com/microsoft/azurelinux/issues about: "For issues with Azure Linux itself (for example: distro packages, kernel, base image content), please file in the azurelinux repo." - From 5b10e9aa4fce0b96a101960f2cfc93c1337b57d7 Mon Sep 17 00:00:00 2001 From: Kavya N <168478594+kavyamsft@users.noreply.github.com> Date: Thu, 21 May 2026 16:22:01 -0700 Subject: [PATCH 09/10] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- SUPPORT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SUPPORT.md b/SUPPORT.md index 952d7b0e..18833605 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -2,7 +2,7 @@ ## How to file issues and get help -This project uses [GitHub issues][gh-issue] to [track bugs][gh-bug] and [feature requests][gh-feature]. For guidance, see [how to report issues](https://aka.ms/azurelinux-reportissues). +This project uses [GitHub issues][gh-issue] to [track bugs][gh-bug] and [feature requests][gh-feature]. Please search existing issues to avoid duplicates before filing a new one. For guidance, see [how to report issues](https://aka.ms/azurelinux-reportissues). For questions about using this project, please consult our [User Guide](./docs/user). If you want to contribute to this project, please review our [Contribution Guidelines](./CONTRIBUTING.md) and our [Developer Guide](./docs/developer). From 87806d4bc04ce7505ce0d6530c18ed687e8bc488 Mon Sep 17 00:00:00 2001 From: Kavya N <168478594+kavyamsft@users.noreply.github.com> Date: Mon, 1 Jun 2026 18:58:31 +0000 Subject: [PATCH 10/10] docs: polish issue templates and support links - align CopilotIssue title prefix with other templates ([Copilot]: ) - rename questions-feedback.md -> questions_feedback.md for consistency - drop redundant &labels= from SUPPORT.md template links - bug_report: switch reproduction steps to bullets to avoid renderer quirks - feature_request: move 'azldev version' section to the bottom - SUPPORT.md: link all four issue templates; note security policy - README.md: use issues/new/choose chooser and tidy wrapping --- .github/ISSUE_TEMPLATE/CopilotIssue.yml | 2 +- .github/ISSUE_TEMPLATE/bug_report.md | 18 ++++++++---------- .github/ISSUE_TEMPLATE/documentation.md | 1 - .github/ISSUE_TEMPLATE/feature_request.md | 7 +++---- ...tions-feedback.md => questions_feedback.md} | 0 README.md | 3 +-- SUPPORT.md | 8 +++++--- 7 files changed, 18 insertions(+), 21 deletions(-) rename .github/ISSUE_TEMPLATE/{questions-feedback.md => questions_feedback.md} (100%) diff --git a/.github/ISSUE_TEMPLATE/CopilotIssue.yml b/.github/ISSUE_TEMPLATE/CopilotIssue.yml index 7dd68394..feff6ebd 100644 --- a/.github/ISSUE_TEMPLATE/CopilotIssue.yml +++ b/.github/ISSUE_TEMPLATE/CopilotIssue.yml @@ -1,6 +1,6 @@ name: Copilot Issue description: Create an issue to be assigned to GitHub Copilot for automated resolution. -title: "[Copilot] " +title: "[Copilot]: " labels: ["copilot"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 385c628e..57b5a844 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -6,20 +6,15 @@ labels: bug --- -**Describe the bug** +**Bug Description** A clear and concise description of what the bug is. -**azldev version** -Output from `azldev version`: - -**To Reproduce** +**Reproduction Steps** Steps to reproduce the behavior: -1. Command line used (paste the full command): - -2. Relevant configuration or inputs: - -3. Any additional steps: +- Command line used (paste the full command): +- Relevant configuration or inputs: +- Any additional steps: **Expected behavior** A clear and concise description of what you expected to happen. @@ -30,6 +25,9 @@ What actually happened? Include error messages verbatim. **Logs / Output** Please attach or paste relevant output (for example: `--verbose` logs, failing test output, stack traces). +**azldev version** +Output from `azldev version`: + **Environment** - Host OS and version (for example: Azure Linux 4.0, Ubuntu 24.04): - Azure Linux version being targeted (for example: 4.0): diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md index e3c8fed4..0f7c2f7f 100644 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -3,7 +3,6 @@ name: Documentation issue about: Report a problem with docs or suggest a documentation improvement title: "[Docs]: " labels: documentation -assignees: "" --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index c74c3eee..e1e48f2e 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -3,13 +3,9 @@ name: Feature request about: Suggest a new feature or enhancement for azldev title: "[Feature]: " labels: enhancement -assignees: "" --- -**azldev version** -Version you are currently using, if applicable (`azldev version`): - **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. @@ -29,5 +25,8 @@ A clear and concise description of any alternative solutions, workarounds, or ap **Use case / impact** Who benefits from this feature and how? +**azldev version** +Version you are currently using, if applicable (`azldev version`): + **Additional context** Add any other context, references, or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/questions-feedback.md b/.github/ISSUE_TEMPLATE/questions_feedback.md similarity index 100% rename from .github/ISSUE_TEMPLATE/questions-feedback.md rename to .github/ISSUE_TEMPLATE/questions_feedback.md diff --git a/README.md b/README.md index b8b3105e..d0da0c31 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,7 @@ For development setup and workflow, please consult our [Developer Guide](./docs/ ## Getting Help -Have questions, found a bug, or need a new feature? Open an issue in our [GitHub -repository](https://github.com/microsoft/azure-linux-dev-tools/issues/new/choose). For guidance on how to file an issue, see [how to report issues](https://aka.ms/azurelinux-reportissues). +Have questions, found a bug, or need a new feature? Open an issue in our [GitHub repository](https://github.com/microsoft/azure-linux-dev-tools/issues/new/choose). For guidance on how to file an issue, see [how to report issues](https://aka.ms/azurelinux-reportissues). For security issues, please see the [security policy](./SECURITY.md). diff --git a/SUPPORT.md b/SUPPORT.md index 18833605..43f987f2 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -2,7 +2,7 @@ ## How to file issues and get help -This project uses [GitHub issues][gh-issue] to [track bugs][gh-bug] and [feature requests][gh-feature]. Please search existing issues to avoid duplicates before filing a new one. For guidance, see [how to report issues](https://aka.ms/azurelinux-reportissues). +This project uses [GitHub issues][gh-issue] to track [bug reports][gh-bug], [feature requests][gh-feature], [documentation issues][gh-docs], and [questions or feedback][gh-question]. Pick the matching template when opening a new issue. Please search existing issues to avoid duplicates before filing a new one. For guidance, see [how to report issues](https://aka.ms/azurelinux-reportissues). For questions about using this project, please consult our [User Guide](./docs/user). If you want to contribute to this project, please review our [Contribution Guidelines](./CONTRIBUTING.md) and our [Developer Guide](./docs/developer). @@ -11,5 +11,7 @@ For questions about using this project, please consult our [User Guide](./docs/u Support for this project is limited to the resources listed above. [gh-issue]: https://github.com/microsoft/azure-linux-dev-tools/issues/new/choose -[gh-bug]: https://github.com/microsoft/azure-linux-dev-tools/issues/new?labels=bug -[gh-feature]: https://github.com/microsoft/azure-linux-dev-tools/issues/new?labels=enhancement +[gh-bug]: https://github.com/microsoft/azure-linux-dev-tools/issues/new?template=bug_report.md +[gh-feature]: https://github.com/microsoft/azure-linux-dev-tools/issues/new?template=feature_request.md +[gh-docs]: https://github.com/microsoft/azure-linux-dev-tools/issues/new?template=documentation.md +[gh-question]: https://github.com/microsoft/azure-linux-dev-tools/issues/new?template=questions_feedback.md