Skip to content

Commit

Permalink
feat(initial): Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mdial89f committed Apr 20, 2022
0 parents commit fd9c327
Show file tree
Hide file tree
Showing 17 changed files with 6,509 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.md
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._
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement.md
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._
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
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.
34 changes: 34 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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.
33 changes: 33 additions & 0 deletions .github/workflows/codeql-analysis.yml
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
13 changes: 13 additions & 0 deletions .github/workflows/pre-commit.yml
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/[email protected]
with:
extra_args: --all-files
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
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 }}
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
coverage
.env
model.nlp
.DS_Store
dist
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.github
.pre-commit-config.yaml
10 changes: 10 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-added-large-files
- repo: https://github.com/Yelp/detect-secrets
rev: v1.1.0
hooks:
- id: detect-secrets
args: ["--exclude-files", "services/uploads/src/test.json"]
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Serverless Stage Destroyer
Loading

0 comments on commit fd9c327

Please sign in to comment.