From 561d0e8a4dbb2e6c4ea48b8d6a728f4fead1053e Mon Sep 17 00:00:00 2001 From: Mayank Singh Date: Thu, 28 May 2026 07:43:36 +0000 Subject: [PATCH] Add PR and issue templates Add GitHub templates following the pattern used in microsoft/azurelinux: - PR template with summary, changelog, type of change, test methodology, and merge checklist - Bug report issue template with environment details - Feature request issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 31 ++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 +++++++++ .github/pull_request_template.md | 49 +++++++++++++++++++++++ 3 files changed, 100 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000000..555f00d87be --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Run '...' +2. Configure '...' +3. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Environment** +- OS/Image version: [e.g. Azure Container Linux 3.0.20260501] +- Architecture: [e.g. x86_64, arm64] +- Platform: [e.g. Azure, QEMU] + +**Logs / Screenshots** +If applicable, add logs, screenshots, or command output to help explain the problem. + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000000..982a4dc0dcd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: feature-request +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000000..04434ff8c9b --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,49 @@ +## Summary + + + +## Change Log + + +- Change +- Change + +## Type of Change + +- [ ] Image build change (base image, sysexts, OEM images) +- [ ] Package/SPEC update +- [ ] CI/automation change +- [ ] SDK/toolchain update +- [ ] Configuration change +- [ ] Documentation update +- [ ] Bug fix + +## Does this affect the image build? + +- [ ] Yes +- [ ] No + +## Associated Issues + + + + +## Test Methodology + +- Test details: + + + +## Merge Checklist + +**All applicable** boxes should be checked before merging +- [ ] Image builds successfully with this change (or image build is not affected) +- [ ] Any updated packages/SPECs build successfully +- [ ] Relevant kola tests pass +- [ ] All package sources are available +- [ ] Source files have up-to-date hashes/manifests +- [ ] Documentation has been updated to match any changes +- [ ] Ready to merge