-
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.
chore: synced file(s) with honestbank/.github
- Loading branch information
1 parent
d569afc
commit dd79276
Showing
7 changed files
with
114 additions
and
40 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
Validating CODEOWNERS rules …
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
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
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,21 +1,27 @@ | ||
name: "Checkov GitHub Action" | ||
on: | ||
# 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] | ||
branches: | ||
- test | ||
- dev | ||
- qa | ||
- prod | ||
- main | ||
push: | ||
branches: | ||
- test | ||
- dev | ||
- qa | ||
- prod | ||
- main | ||
|
||
jobs: | ||
checkov: | ||
name: checkov | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: "recursive" | ||
token: ${{ secrets.ENGINEERING_GITHUB_PERSONAL_ACCESS_TOKEN }} | ||
- name: Run Checkov | ||
id: checkov | ||
uses: bridgecrewio/checkov-action@master | ||
with: | ||
download_external_modules: true # optional: download external terraform modules from public git repositories and terraform registry | ||
quiet: true # optional: display only failed checks | ||
repository-checkov: | ||
name: repository-checkov | ||
uses: honestbank/workflows/.github/workflows/shared-checkov.yaml@main | ||
secrets: inherit |
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,18 +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 | ||
|
||
on: | ||
# 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: # 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 |
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,23 +1,60 @@ | ||
# 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 | ||
|
||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
|
||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.3.0 # Get the latest version 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: end-of-file-fixer | ||
- 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: local | ||
hooks: | ||
- id: create-checkov-baseline | ||
name: Create Checkov Baseline | ||
entry: bash -c 'if [ ! -f .checkov.baseline ]; then echo "{}" > .checkov.baseline && touch baseline-created; fi' | ||
language: system | ||
stages: [commit] | ||
pass_filenames: false | ||
- repo: https://github.com/antonbabenko/pre-commit-terraform | ||
rev: v1.74.1 # Get the latest version from: https://github.com/antonbabenko/pre-commit-terraform/releases | ||
rev: v1.83.6 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases | ||
hooks: | ||
- id: terraform_fmt | ||
- id: terraform_docs | ||
args: | ||
- --args=--config=.terraform-docs.yml | ||
- id: terraform_validate | ||
exclude: test/ | ||
args: | ||
- --hook-config=--retry-once-with-cleanup=true | ||
- --tf-init-args=-upgrade | ||
- id: terraform_tfsec | ||
exclude: test/ | ||
exclude: "test/" | ||
- id: terraform_checkov | ||
exclude: test/ | ||
exclude: "test/" | ||
args: | ||
- --args=--baseline __GIT_WORKING_DIR__/.checkov.baseline | ||
- repo: local | ||
hooks: | ||
- id: delete-checkov-baseline | ||
name: Delete Checkov Baseline | ||
entry: bash -c 'if [ -f baseline-created ]; then rm .checkov.baseline && rm baseline-created; fi' | ||
language: system | ||
stages: [commit] | ||
pass_filenames: false | ||
- repo: https://github.com/gitguardian/ggshield | ||
rev: v1.21.0 | ||
hooks: | ||
- id: ggshield | ||
language: python | ||
stages: [commit] | ||
args: [ 'secret', 'scan', 'pre-commit' ] | ||
- repo: local | ||
hooks: | ||
- id: docs | ||
name: docs | ||
entry: make | ||
args: [ 'docs' ] | ||
language: system |
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,19 @@ | ||
commit: docs validate | ||
|
||
docs: | ||
terraform-docs --lockfile=false -c .terraform-docs.yml . | ||
|
||
init: | ||
git submodule update --init --recursive | ||
terraform init -upgrade | ||
|
||
lint: | ||
terraform fmt --recursive | ||
|
||
tests: | ||
# Super long timeout since this Makefile will be used in various repositories | ||
cd test; go clean -testcache; go test -v -timeout 60m | ||
|
||
validate: lint | ||
terraform init --upgrade | ||
terraform validate |