Skip to content

Commit

Permalink
chore: synced file(s) with honestbank/.github
Browse files Browse the repository at this point in the history
  • Loading branch information
honestbank-bot committed Nov 21, 2023
1 parent c399ab5 commit e9e9ce2
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 37 deletions.
2 changes: 2 additions & 0 deletions .checkov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ quiet: true
skip-path:
- .external_modules
- modules
- catalog-info.yml
baseline: .checkov.baseline
8 changes: 7 additions & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
-->

## Pull Request Submission Checklist
### Pull Request Submission Checklist

Please confirm that you have done the following before requesting reviews:

Expand All @@ -17,3 +17,9 @@ Please confirm that you have done the following before requesting reviews:
### Description

* <!-- WRITE A SHORT DESCRIPTION OF CHANGES -->

### Experiment Link

<!-- All code changes require an experiment - you can get started at https://www.notion.so/honestbank/How-to-create-a-feature-flag-ON-OFF-on-GrowthBook-0a11a156397d4eca89fb76dad0eb921c?pvs=4 -->

GrowthBook Experiment Link: https://app.growthbook.io/features/
27 changes: 27 additions & 0 deletions .github/workflows/checkov.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# yamllint disable rule:line-length
# Use template from https://github.com/honestbank/workflows/tree/main/examples/repository-workflows
---
name: "repository-checkov"
permissions: read-all

on: # yamllint disable-line rule:truthy
pull_request:
branches:
- test
- dev
- qa
- prod
- main
push:
branches:
- test
- dev
- qa
- prod
- main

jobs:
repository-checkov:
name: repository-checkov
uses: honestbank/workflows/.github/workflows/shared-checkov.yaml@main
secrets: inherit
22 changes: 12 additions & 10 deletions .github/workflows/semantic-pr.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
name: "Semantic Pull Request"
# DO NOT CHANGE. This file is being managed from a central repository
# To know more simply visit https://github.com/honestbank/.github/blob/main/docs/about.md

# yamllint disable rule:line-length
# Use template from https://github.com/honestbank/workflows/tree/main/examples/repository-workflows
---
name: "repository-semantic-pr"
permissions: read-all

on:
on: # yamllint disable-line rule:truthy
pull_request:
types:
- opened
- edited
- synchronize

jobs:
main:
name: Semantic Pull Request
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v4
name: Semantic Pull Request
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
repository-semantic-pr:
name: repository-semantic-pr
uses: honestbank/workflows/.github/workflows/shared-semantic-pr.yaml@main
secrets: inherit
34 changes: 22 additions & 12 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,37 @@

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0 # Get the latest from: https://github.com/pre-commit/pre-commit-hooks/releases
rev: v4.5.0 # Get the latest from: https://github.com/pre-commit/pre-commit-hooks/releases
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: detect-aws-credentials
args: ['--allow-missing-credentials']
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.83.2 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases
rev: v1.83.5 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases
hooks:
- id: terraform_fmt
- id: terraform_docs
- id: terraform_validate
exclude: (test/|examples/)
args:
- --hook-config=--retry-once-with-cleanup=true
- --tf-init-args=-upgrade
- id: terraform_tfsec
exclude: (test/|examples/)
exclude: "test/"
- id: terraform_checkov
exclude: (test/|examples/)
- repo: https://github.com/gitguardian/ggshield
rev: v1.18.1 # Update to latest version by running `pre-commit autoupdate`
exclude: "test/"
- repo: https://github.com/gitguardian/ggshield
rev: v1.20.0
hooks:
- id: ggshield
language: python
stages: [commit]
args: [ 'secret', 'scan', 'pre-commit' ]
- repo: local
hooks:
- id: ggshield
language: python
stages: [commit]
args: [ 'secret', 'scan', 'pre-commit' ]
- id: docs
name: docs
entry: make
args: [ 'docs' ]
language: system
20 changes: 6 additions & 14 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@ lint:
terraform fmt --recursive

validate: lint
cd examples/create_mysql_instance_with_public_ip/; terraform init --upgrade; terraform validate
cd examples/create_mysql_instance_with_private_ip/; terraform init --upgrade; terraform validate
cd examples/mysql_instance_with_read_replica/; terraform init --upgrade; terraform validate
cd examples/postgres_instance_with_read_replica/; terraform init --upgrade; terraform validate
terraform init --upgrade
terraform validate

docs:
mv .terraform{,.bak}
mv .terraform.lock.hcl{,.bak}
terraform-docs -c .terraform-docs.yml .
cd examples/create_mysql_instance_with_public_ip/; terraform-docs markdown . --output-file README.md --output-mode inject
cd examples/create_mysql_instance_with_private_ip/; terraform-docs markdown . --output-file README.md --output-mode inject
cd examples/mysql_instance_with_read_replica/; terraform-docs markdown . --output-file README.md --output-mode inject
cd examples/postgres_instance_with_read_replica/; terraform-docs markdown . --output-file README.md --output-mode inject
mv .terraform{.bak,}
mv .terraform.lock.hcl{.bak,}

commit: docs validate

apply_and_destroy:
terraform apply -auto-approve && terraform apply -auto-approve -destroy

tests:
cd test; go clean -testcache; ./test.sh

0 comments on commit e9e9ce2

Please sign in to comment.