-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bootstrap): bootstrap the project with structure and automation
- Loading branch information
Showing
13 changed files
with
22,676 additions
and
14 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,35 @@ | ||
--- | ||
name: Bug | ||
about: Something's Broken | ||
title: "" | ||
labels: bug | ||
assignees: "" | ||
--- | ||
|
||
## Type of Issue: | ||
|
||
- [x] Bug: Something isn't working | ||
|
||
#### Issue Creator Checklist | ||
|
||
- [ ] This issue has been thoroughly documented below; a developer should be able to understand the issue by reading it. | ||
|
||
## What's broken? | ||
|
||
_List a description of the bad behavior or failure. Please be as detailed as possible. Attach screenshots if appropriate_ | ||
|
||
## What's the impact of this bug? | ||
|
||
_What's the impact to the end user experience and/or application in general_ | ||
|
||
## Steps to Reproduce? | ||
|
||
_If applicable, list steps to reproduce the issue_ | ||
|
||
## Assorted Notes/Considerations | ||
|
||
_List any other information that you think is important_ | ||
|
||
## AC: | ||
|
||
_List the acceptance criteria for this issue._ |
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,31 @@ | ||
--- | ||
name: Enhancement | ||
about: New functionality or request | ||
title: "" | ||
labels: enhancement | ||
assignees: "" | ||
--- | ||
|
||
## Type of Issue: | ||
|
||
- [x] Enhancement: New feature or request | ||
|
||
#### Issue Creator Checklist | ||
|
||
- [ ] This issue has been thoroughly documented below; a developer should be able to understand the issue by reading it. | ||
|
||
## Background | ||
|
||
_History or background behind this enhancement request._ | ||
|
||
## Proposed Approach | ||
|
||
_If applicable... sometimes we don't have a proposed approach yet, and that's OK_ | ||
|
||
## Value | ||
|
||
_In a sentence, or maybe two, what value does this enhancement represent?_ | ||
|
||
## AC: | ||
|
||
_List the acceptance criteria for this issue._ |
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,25 @@ | ||
--- | ||
name: Question | ||
about: Request for more information | ||
title: "" | ||
labels: question | ||
assignees: "" | ||
--- | ||
|
||
_If you'd prefer, use the repo's GitHub Discussions feature to ask questions._ | ||
|
||
## Type of Issue: | ||
|
||
- [x] Question: Further information is requested (I have a question) | ||
|
||
#### Issue Creator Checklist | ||
|
||
- [ ] This issue has been thoroughly documented below; a developer should be able to understand the issue by reading it. | ||
|
||
## Question / Request for more Info | ||
|
||
_What's your question? Or, what would you like more information on? Don't be afraid to use plain english_ | ||
|
||
## AC: | ||
|
||
- My question is answered. |
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,34 @@ | ||
## Purpose | ||
|
||
_Describe the problem or feature in addition to a link to the issues._ | ||
|
||
#### Linked Issues to Close | ||
|
||
_Links to issue(s) that are closed by this PR, if applicable. Be sure to use the phrase "Closes #XXX" for each issue, so they automatically close_ | ||
|
||
## Approach | ||
|
||
_How does this change address the issue?_ | ||
|
||
## Learning | ||
|
||
_Describe the research stage_ | ||
|
||
_Links to blog posts, patterns, libraries or addons used to solve this problem_ | ||
|
||
## Assorted Notes/Considerations | ||
|
||
_List any other information that you think is important... a post-merge activity, someone to notify, etc._ | ||
|
||
#### Pull Request Creator Checklist | ||
|
||
- [ ] Any associated issue(s) are linked above. | ||
- [ ] This PR and linked issues(s) are a complete description of the changeset. | ||
- [ ] Someone has been assigned this PR. | ||
- [ ] Someone has been marked as reviewer on this PR. | ||
|
||
#### Pull Request Assignee Checklist | ||
|
||
- [ ] Any associated issue(s) are linked above. | ||
- [ ] This PR meets all acceptance criteria for any linked issues. | ||
- [ ] This PR and linked issues(s) are a complete description of the changeset. |
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,33 @@ | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
schedule: | ||
- cron: "00 4 * * 1" | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: ["javascript"] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v1 | ||
with: | ||
languages: ${{ matrix.language }} | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v1 |
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,13 @@ | ||
name: Pre-commit | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
- uses: pre-commit/action@v2.0.2 | ||
with: | ||
extra_args: --all-files |
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,20 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
Release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 16 | ||
- run: npm ci | ||
- run: npx semantic-release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_BOT_NPM_TOKEN }} |
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 |
---|---|---|
@@ -1,2 +1 @@ | ||
yarn.lock | ||
package-lock.json | ||
node_modules |
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,15 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.0.1 | ||
hooks: | ||
- id: check-added-large-files | ||
exclude: package-lock.json | ||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: v2.3.1 | ||
hooks: | ||
- id: prettier | ||
- repo: https://github.com/Yelp/detect-secrets | ||
rev: v1.1.0 | ||
hooks: | ||
- id: detect-secrets | ||
args: ["--exclude-files", "services/uploads/src/test.json"] |
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 @@ | ||
CHANGELOG.md |
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
Oops, something went wrong.