-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added: issue and pull request template(#12)
- Loading branch information
1 parent
455eabd
commit 9606225
Showing
4 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
labels: bug | ||
|
||
--- | ||
|
||
## Current behavior | ||
<!-- Describe the current behavior pointing exactly why it's not working as intended. --> | ||
|
||
|
||
## Expected behavior | ||
<!-- Describe what the desired behavior should be. --> | ||
|
||
|
||
## Steps to reproduce the issue | ||
<!-- Please provide the steps to reproduce and if possible a *minimal reproducible example* of the problem --> | ||
|
||
|
||
## Can you handle fixing this bug by yourself? | ||
|
||
- [ ] YES | ||
- [ ] NO | ||
|
||
## Environment details | ||
<!-- Please provide all the informations required below. --> | ||
- Browser: <!-- Your browser, version --> | ||
- OS: <!-- Your operating system, version --> | ||
- Code Version: <!-- Tag, branch or commit determining which version of code is used --> | ||
|
||
## Additional information | ||
<!-- If you think that any additional information would be useful, please provide them here. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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? | ||
<!-- Describe the motivation or the concrete use case for a new feature or why one of the current ones should be enhanced. --> | ||
|
||
|
||
## What are the acceptance criteria? | ||
<!-- List the acceptance criteria for this task in the form of a list. --> | ||
|
||
- [ ] ... | ||
|
||
## Can you complete this feature request by yourself? | ||
|
||
- [ ] YES | ||
- [ ] NO | ||
|
||
## Additional information | ||
<!-- If you think that any additional information would be useful, please provide them here. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
### Related Issues | ||
<!-- Put related issue number which this PR is closing. For example #123 --> | ||
|
||
# | ||
|
||
### Short Description and Why It's Useful | ||
<!-- Describe in a few words what is this Pull Request changing and why it's useful --> | ||
|
||
|
||
### Screenshots of Visual Changes before/after (If There Are Any) | ||
<!-- If you made any changes in the UI layer, please provide before/after screenshots --> | ||
|
||
|
||
### Contribution and Currently Important Rules Acceptance | ||
<!-- Please get familiar with following info --> | ||
|
||
- [ ] I have read and followed [contribution rules](https://github.com/hotwax/shopify-hc-oms-app#contribution-guideline) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }} |