mirror of
https://github.com/yeslayla/aws-cluster-stack.git
synced 2025-01-14 04:53:30 +01:00
Basic .github
directory
This commit is contained in:
parent
479153c747
commit
0eb338c1b2
1
.github/CODEOWNERS
vendored
Normal file
1
.github/CODEOWNERS
vendored
Normal file
@ -0,0 +1 @@
|
||||
/* @josephbmanley
|
17
.github/ISSUE_TEMPLATE/1_bug_report.md
vendored
Normal file
17
.github/ISSUE_TEMPLATE/1_bug_report.md
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
name: 🐞 Bug report
|
||||
about: Report a bug that has been encountered.
|
||||
labels: 'bug'
|
||||
---
|
||||
|
||||
**Version:**
|
||||
|
||||
<!-- x.x.x -->
|
||||
|
||||
**Issue description:**
|
||||
|
||||
<!-- Clear description of the issue you are seeing. -->
|
||||
|
||||
**Steps to reproduce:**
|
||||
|
||||
<!-- Give others an idea on how you can replicate the issue. -->
|
9
.github/ISSUE_TEMPLATE/2_feature_request.md
vendored
Normal file
9
.github/ISSUE_TEMPLATE/2_feature_request.md
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
name: 💡 Feature Request
|
||||
about: Ideas to improve the stack!
|
||||
labels: 'enhancement'
|
||||
---
|
||||
|
||||
**Description**
|
||||
|
||||
<!-- Clear description of what you'd like to see. -->
|
9
.github/ISSUE_TEMPLATE/3_question.md
vendored
Normal file
9
.github/ISSUE_TEMPLATE/3_question.md
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
name: ❓ Question
|
||||
about: Have a question? Ask it!
|
||||
labels: 'question'
|
||||
---
|
||||
|
||||
**Question**
|
||||
|
||||
<!-- Provide any details to help others better understand your question. -->
|
9
.github/ISSUE_TEMPLATE/4_guidance.md
vendored
Normal file
9
.github/ISSUE_TEMPLATE/4_guidance.md
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
name: 🧭 Guidance
|
||||
about: Lost? Maybe someone can help.
|
||||
labels: 'help wanted'
|
||||
---
|
||||
|
||||
**Description:**
|
||||
|
||||
<!-- Clear description of what is going on. -->
|
25
.github/workflows/push_develop.yml
vendored
Normal file
25
.github/workflows/push_develop.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
name: Push Develop Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- develop
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@v1
|
||||
- name: Ship to S3
|
||||
uses: jakejarvis/s3-sync-action@master
|
||||
with:
|
||||
args: --follow-symlinks --delete
|
||||
env:
|
||||
SOURCE_DIR: cloudformation
|
||||
AWS_REGION: "us-east-1"
|
||||
DEST_DIR: nakama/develop/cloudformation
|
||||
AWS_S3_BUCKET: sumu-stacks
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
25
.github/workflows/push_production.yml
vendored
Normal file
25
.github/workflows/push_production.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
name: Push Production Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- develop
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@v1
|
||||
- name: Ship to S3
|
||||
uses: jakejarvis/s3-sync-action@master
|
||||
with:
|
||||
args: --follow-symlinks --delete
|
||||
env:
|
||||
SOURCE_DIR: cloudformation
|
||||
AWS_REGION: "us-east-1"
|
||||
DEST_DIR: nakama/production/cloudformation
|
||||
AWS_S3_BUCKET: sumu-stacks
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
Loading…
Reference in New Issue
Block a user