From 94f166991cfdaa09df49935d2d0c4eadc846c0f3 Mon Sep 17 00:00:00 2001 From: Yash Maheshwari Date: Thu, 22 Feb 2024 18:31:47 +0530 Subject: [PATCH 1/2] Implemented: PR template workflow --- .github/PULL_REQUEST_TEMPLATE.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..057ca5a --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,24 @@ +### Related Issues + + +Closes # + +### Short Description and Why It's Useful + + + +### Screenshots of Visual Changes before/after (If There Are Any) + + + +### Is the changes contains any breaking change? +If there are any breaking change include those in the release notes file + +- [ ] Yes +- [ ] No + + +### Contribution and Currently Important Rules Acceptance + + +- [ ] I read and followed [contribution rules](https://github.com/hotwax/dxp-components#contribution-guideline) \ No newline at end of file From e02a116b8cfdecb41b82ff4df96bffd4ba32bdbc Mon Sep 17 00:00:00 2001 From: Yash Maheshwari Date: Thu, 22 Feb 2024 18:37:55 +0530 Subject: [PATCH 2/2] Implemented: issue template workflows --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 31 ++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/FEATURE_REPORT.md | 23 ++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.md create mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REPORT.md diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md new file mode 100644 index 0000000..f0bcf3d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Create a report to help us improve +labels: bug +--- + +## Current behavior + + + +## Expected behavior + + + +## Steps to reproduce the issue + + + +## Can you handle fixing this bug by yourself? + +- [ ] YES +- [ ] NO + +## Environment details + +- Browser: +- OS: +- Code Version: + +## Additional information + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REPORT.md b/.github/ISSUE_TEMPLATE/FEATURE_REPORT.md new file mode 100644 index 0000000..30a12f3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REPORT.md @@ -0,0 +1,23 @@ +--- +name: Feature request +about: Suggest an idea for this project +labels: feature request + +--- + +## What is the motivation for adding/enhancing this feature? + + + +## What are the acceptance criteria? + + +- [ ] ... + +## Can you complete this feature request by yourself? + +- [ ] YES +- [ ] NO + +## Additional information + \ No newline at end of file