Merge branch 'master' into develop

This commit is contained in:
olivermrbl
2022-06-19 12:59:08 +02:00
56 changed files with 2304 additions and 676 deletions

54
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@@ -0,0 +1,54 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'type: bug'
assignees: ''
---
<!--
Thank you for submitting an issue!
Please make sure your issue is understandable and reproducible.
To make your issue readable make sure you use valid Markdown syntax: https://guides.github.com/features/mastering-markdown/
Please ensure you have also read and understood our contribution guide: https://github.com/medusajs/medusa/blob/master/CONTRIBUTING.md
-->
## Bug report
### Describe the bug
A clear and concise description of what the bug is.
### System information
Medusa version (including plugins):
Node.js version:
Database:
Operating system:
Browser (if relevant):
### Steps to reproduce the behavior
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
### Expected behavior
A clear and concise description of what you expected to happen
### Screenshots
If applicable, add screenshots to help explain your problem
### Code snippets
If applicable, add code samples to help explain your problem
### Additional context
Add any other context about the problem here

48
.github/ISSUE_TEMPLATE/docs.yml vendored Normal file
View File

@@ -0,0 +1,48 @@
name: 📚 Documentation
description: Report errors you find in our documentation or ideas for enhancing our documentation
labels: ["type: docs"]
body:
- type: markdown
attributes:
value: |
# Hello 👋
Thanks for taking the time to fill out this issue.
Please fill out each section below. This info helps Medusa maintainers understand the issue better and fix it in a short time.
Useful links:
- Contribution Guidelines: https://github.com/medusajs/medusa/blob/master/CONTRIBUTING.md
- Documentation: https://docs.medusajs.com/
- type: checkboxes
attributes:
label: Preliminary Checks
description: Please make sure that you verify each checkbox and follow the instructions for them.
options:
- label: "This issue is not a duplicate. Before opening a new issue, please search existing issues: https://github.com/medusajs/medusa/issues"
required: true
- type: textarea
validations:
required: true
attributes:
label: Issue Summary
description: |
What is the error you found in our documentation or what do you think should be enhanced?
- type: textarea
validations:
required: false
attributes:
label: How can this issue be resolved?
description: If you have an idea of how the issue can be resolved, please details the steps below.
value: |
1.
2.
3.
...
- type: checkboxes
attributes:
label: Are you interested in working on this issue?
description: If you're interested in not only reporting this issue but also fix it, check the box below.
options:
- label: "I would like to fix this issue"
required: false

View File

@@ -0,0 +1,29 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: 'type: feature or enhancement'
assignees: ''
---
<!--
Thank you for submitting an issue!
Please make sure your issue is understandable.
To make your issue readable make sure you use valid Markdown syntax: https://guides.github.com/features/mastering-markdown/
Please ensure you have also read and understood our contribution guide: https://github.com/medusajs/medusa/blob/master/CONTRIBUTING.md
-->
**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.
**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.

View File

@@ -1,5 +1,9 @@
name: Medusa Pipeline
on: [pull_request]
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'www/**'
jobs:
unit-tests: