Skip to content

Commit 642ea11

Browse files
add: uptime-kuma and workflow files
1 parent fae1e99 commit 642ea11

13 files changed

+629
-0
lines changed

.github/dependabot.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: /
5+
schedule:
6+
interval: monthly
7+
commit-message:
8+
prefix: "bump(deps): "
9+
10+
- package-ecosystem: docker
11+
directory: /
12+
schedule:
13+
interval: monthly
14+
commit-message:
15+
prefix: "bump(docker) "
16+
17+
- package-ecosystem: github-actions
18+
directory: /.github/workflows
19+
schedule:
20+
interval: monthly
21+
commit-message:
22+
prefix: "bump(actions) "
+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Deploy to dev
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened, labeled]
6+
paths:
7+
- '**.sh*'
8+
- '**.ts*'
9+
- Dockerfile
10+
- package.json
11+
- pnpm-lock.yaml
12+
- .github/workflows/cd-deploy-to-dev.yml
13+
- .github/workflows/sub-cloudrun-deploy.yml
14+
15+
concurrency:
16+
# Ensures that only one workflow task will run at a time. Previous builds, if
17+
# already in process, will get cancelled. Only the latest commit will be allowed
18+
# to run, cancelling any workflows in between
19+
group: ${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.run_id }}
20+
cancel-in-progress: true
21+
22+
jobs:
23+
test:
24+
uses: ./.github/workflows/sub-unit-tests.yml
25+
with:
26+
node_env: development
27+
28+
build:
29+
uses: ./.github/workflows/sub-build-docker-image.yml
30+
with:
31+
environment: dev
32+
dockerfile_path: ./docker/Dockerfile
33+
dockerfile_target: runner
34+
app_name: ${{ vars.APP_NAME }}
35+
registry: ${{ vars.GAR_BASE }}
36+
secrets: inherit
37+
38+
deploy:
39+
needs: [build]
40+
uses: ./.github/workflows/sub-cloudrun-deploy.yml
41+
with:
42+
environment: dev
43+
project_id: ${{ vars.GCP_PROJECT }}
44+
region: ${{ vars.GCP_REGION }}
45+
app_name: ${{ vars.APP_NAME }}
46+
registry: ${{ vars.GAR_BASE }}
47+
image_digest: ${{ needs.build.outputs.image_digest }}
48+
min_instances: '0'
49+
max_instances: '30'
50+
cpu: '1'
51+
memory: 1Gi
52+
secrets: inherit
+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Deploy to prod
2+
3+
on:
4+
release:
5+
types:
6+
- published
7+
8+
concurrency:
9+
# Ensures that only one workflow task will run at a time. Previous builds, if
10+
# already in process, will get cancelled. Only the latest commit will be allowed
11+
# to run, cancelling any workflows in between
12+
group: ${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.run_id }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
test:
17+
uses: ./.github/workflows/sub-unit-tests.yml
18+
with:
19+
node_env: production
20+
21+
build:
22+
# needs: [test]
23+
uses: ./.github/workflows/sub-build-docker-image.yml
24+
with:
25+
environment: prod
26+
dockerfile_path: ./docker/Dockerfile
27+
dockerfile_target: runner
28+
app_name: ${{ vars.APP_NAME }}
29+
registry: ${{ vars.GAR_BASE }}
30+
secrets: inherit
31+
32+
deploy:
33+
needs: [build]
34+
uses: ./.github/workflows/sub-cloudrun-deploy.yml
35+
with:
36+
environment: prod
37+
project_id: ${{ vars.GCP_PROJECT }}
38+
region: ${{ vars.GCP_REGION }}
39+
app_name: ${{ vars.APP_NAME }}
40+
registry: ${{ vars.GAR_BASE }}
41+
image_digest: ${{ needs.build.outputs.image_digest }}
42+
min_instances: '1'
43+
max_instances: '100'
44+
cpu: '1'
45+
memory: 1Gi
46+
secrets: inherit
+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Deploy to test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- '**.sh*'
9+
- '**.ts*'
10+
- Dockerfile
11+
- package.json
12+
- pnpm-lock.yaml
13+
- .github/workflows/cd-deploy-to-test.yml
14+
- .github/workflows/sub-cloudrun-deploy.yml
15+
16+
concurrency:
17+
# Ensures that only one workflow task will run at a time. Previous builds, if
18+
# already in process, will get cancelled. Only the latest commit will be allowed
19+
# to run, cancelling any workflows in between
20+
group: ${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.run_id }}
21+
cancel-in-progress: true
22+
23+
jobs:
24+
test:
25+
uses: ./.github/workflows/sub-unit-tests.yml
26+
with:
27+
node_env: production
28+
29+
build:
30+
needs: [test]
31+
uses: ./.github/workflows/sub-build-docker-image.yml
32+
with:
33+
environment: test
34+
dockerfile_path: ./docker/Dockerfile
35+
dockerfile_target: runner
36+
app_name: ${{ vars.APP_NAME }}
37+
registry: ${{ vars.GAR_BASE }}
38+
secrets: inherit
39+
40+
deploy:
41+
needs: [build]
42+
uses: ./.github/workflows/sub-cloudrun-deploy.yml
43+
with:
44+
environment: test
45+
project_id: ${{ vars.GCP_PROJECT }}
46+
region: ${{ vars.GCP_REGION }}
47+
app_name: ${{ vars.APP_NAME }}
48+
registry: ${{ vars.GAR_BASE }}
49+
image_digest: ${{ needs.build.outputs.image_digest }}
50+
min_instances: '0'
51+
max_instances: '30'
52+
cpu: '1'
53+
memory: 1Gi
54+
secrets: inherit

.github/workflows/chore-clean-dev.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Clean dev instances
2+
3+
on:
4+
delete:
5+
pull_request:
6+
branches:
7+
- main
8+
types:
9+
- closed
10+
11+
jobs:
12+
delete:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Inject slug/short variables
16+
uses: rlespinasse/[email protected]
17+
18+
- name: Authenticate to Google Cloud
19+
id: auth
20+
uses: google-github-actions/[email protected]
21+
with:
22+
workload_identity_provider: '${{ vars.GCP_WIF }}'
23+
service_account: '${{ vars.GCP_DEPLOYMENTS_SA }}'
24+
25+
- name: Set up Cloud SDK
26+
uses: google-github-actions/[email protected]
27+
28+
- name: Removing CR service
29+
run: |
30+
gcloud run services delete ${{ vars.APP_NAME }}-${{ env.GITHUB_HEAD_REF_SLUG || env.GITHUB_REF_SLUG }} --region=${{ vars.GOOGLE_CLOUD_REGION }} --quiet
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Lint Code Base
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
paths-ignore:
7+
- '**.sh*'
8+
- '**.ts*'
9+
- Dockerfile
10+
- package.json
11+
- pnpm-lock.yaml
12+
- .github/workflows/ci-lint-codebase.yml
13+
14+
jobs:
15+
linter:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- run: echo "Job not required"
+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Lint Code Base
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
paths:
7+
- '**.sh*'
8+
- '**.ts*'
9+
- Dockerfile
10+
- package.json
11+
- pnpm-lock.yaml
12+
- .github/workflows/ci-lint-codebase.yml
13+
14+
push:
15+
branches: [main]
16+
paths:
17+
- '**.sh*'
18+
- '**.ts*'
19+
- Dockerfile
20+
- package.json
21+
- pnpm-lock.yaml
22+
- .github/workflows/ci-lint-codebase.yml
23+
24+
concurrency:
25+
# Ensures that only one workflow task will run at a time. Previous builds, if
26+
# already in process, will get cancelled. Only the latest commit will be allowed
27+
# to run, cancelling any workflows in between
28+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
29+
cancel-in-progress: true
30+
31+
jobs:
32+
linter:
33+
runs-on: ubuntu-latest
34+
steps:
35+
- name: Checkout Code Repository
36+
uses: actions/[email protected]
37+
with:
38+
# Full git history is needed to get a proper
39+
# list of changed files within `super-linter`
40+
fetch-depth: 0
41+
42+
- name: Lint Code Base
43+
uses: super-linter/super-linter/[email protected]
44+
env:
45+
LOG_LEVEL: ERROR
46+
VALIDATE_ALL_CODEBASE: false
47+
VALIDATE_SHELL_SHFMT: false
48+
VALIDATE_JSCPD: false
49+
VALIDATE_CSS: false
50+
VALIDATE_EDITORCONFIG: false
51+
VALIDATE_MARKDOWN: false
52+
VALIDATE_DOCKERFILE_HADOLINT: false
53+
LINTER_RULES_PATH: /
54+
JAVASCRIPT_DEFAULT_STYLE: prettier
55+
TYPESCRIPT_DEFAULT_STYLE: prettier
56+
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)