diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md new file mode 100644 index 0000000..5251a1b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -0,0 +1,32 @@ +--- +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 + diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md new file mode 100644 index 0000000..561fd3d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.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 + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..80b5538 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,17 @@ +### Related Issues + + +# + +### Short Description and Why It's Useful + + + +### Screenshots of Visual Changes before/after (If There Are Any) + + + +### Contribution and Currently Important Rules Acceptance + + +- [ ] I have read and followed [contribution rules](https://github.com/hotwax/shopify-hc-oms-app#contribution-guideline) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 0000000..0dc3696 --- /dev/null +++ b/.github/workflows/pull-request.yml @@ -0,0 +1,16 @@ +name: Verify build + +on: + push: + branches: [main] + pull_request: + # The branches below must be a subset of the branches above + branches: [main] + +jobs: + call-workflow-in-another-repo: + uses: hotwax/dxp-components/.github/workflows/common-pull-request.yml@main + with: + config-path: .github/labeler.yml + secrets: + envPAT: ${{ secrets.envPAT }}