Skip to content

Commit

Permalink
merge with staging
Browse files Browse the repository at this point in the history
  • Loading branch information
poocart committed Oct 17, 2023
2 parents 50727ce + d24c6a5 commit cf40387
Show file tree
Hide file tree
Showing 651 changed files with 65,120 additions and 37,842 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
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.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
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.
196 changes: 134 additions & 62 deletions .github/actions/check-status/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/check_formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Get changed directories
id: changed-dirs
run: |
changed=$(git diff --name-only origin/${{ steps.base-branch.outputs.base_branch }} | grep -v "node_modules" | cut -d/ -f1 | sort -u | tr "\n" " ")
changed=$(git diff --name-only origin/${{ steps.base-branch.outputs.base_branch }} --diff-filter=dr | grep -v "node_modules" | cut -d/ -f1 | sort -u | tr "\n" " ")
echo "changed_dirs=$changed" >> $GITHUB_OUTPUT
- name: Run Prettier on changed directories
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_carbonmark_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Pull Vercel Environment Information
run: vercel env pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} .env.local
Expand All @@ -30,7 +30,7 @@ jobs:
environment: Preview – carbonmark-api
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set short commit hash to environment variable
run: echo "SHORT_COMMIT_SHA=$(echo ${{ github.event.pull_request.head.sha }} | cut -c 1-7)" >> $GITHUB_ENV
Expand Down
Loading

0 comments on commit cf40387

Please sign in to comment.