-
Notifications
You must be signed in to change notification settings - Fork 1
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
41e1e80
commit 014c275
Showing
9 changed files
with
198 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
compact: true | ||
directory: | ||
- . | ||
download-external-modules: true | ||
evaluate-variables: true | ||
external-modules-download-path: .external_modules | ||
framework: | ||
- all | ||
quiet: true | ||
skip-path: | ||
- .external_modules | ||
- modules | ||
- catalog-info.yml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
# 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 | ||
|
||
# This is a comment. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence, | ||
# @global-owner1 and @global-owner2 will be requested for | ||
# review when someone opens a pull request. | ||
* @honestbank/devops-engineers @honestbank/honestbank-engineers | ||
* @honestbank/devops-engineers |
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 |
---|---|---|
@@ -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 |
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,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 |
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 @@ | ||
# 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 | ||
- reopened | ||
- synchronize | ||
|
||
jobs: | ||
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# yamllint disable rule:line-length | ||
# Use template from https://github.com/honestbank/workflows/tree/main/examples/repository-workflows | ||
--- | ||
name: "repository-shiftleft-terraform" | ||
permissions: read-all | ||
|
||
on: # yamllint disable-line rule:truthy | ||
pull_request: | ||
branches: | ||
- test | ||
- dev | ||
- qa | ||
- prod | ||
- main | ||
push: | ||
branches: | ||
- test | ||
- dev | ||
- qa | ||
- prod | ||
- main | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
# schedule a job to run every day at 17:30 UTC | ||
- cron: '30 17 * * *' | ||
|
||
jobs: | ||
repository-shiftleft-terraform: | ||
name: repository-shiftleft-terraform | ||
uses: honestbank/workflows/.github/workflows/shared-terraform-shiftleft.yaml@main | ||
with: | ||
repo_name: ${{ github.event.repository.name }} | ||
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# yamllint disable rule:line-length | ||
# Use template from https://github.com/honestbank/workflows/tree/main/examples/repository-workflows | ||
--- | ||
name: "repository-shiftleft-terraform" | ||
permissions: read-all | ||
|
||
on: # yamllint disable-line rule:truthy | ||
pull_request: | ||
branches: | ||
- test | ||
- dev | ||
- qa | ||
- prod | ||
- main | ||
push: | ||
branches: | ||
- test | ||
- dev | ||
- qa | ||
- prod | ||
- main | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
# schedule a job to run every day at 17:30 UTC | ||
- cron: '30 17 * * *' | ||
|
||
jobs: | ||
repository-shiftleft-terraform: | ||
name: repository-shiftleft-terraform | ||
uses: honestbank/workflows/.github/workflows/shared-terraform-shiftleft.yaml@main | ||
with: | ||
repo_name: ${{ github.event.repository.name }} | ||
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,33 @@ | ||
# 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: v3.2.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-added-large-files | ||
- repo: git://github.com/antonbabenko/pre-commit-terraform | ||
rev: v1.48.0 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases | ||
- 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 | ||
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.77.0 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases | ||
hooks: | ||
- id: terraform_fmt | ||
- id: terraform_docs | ||
- id: terraform_validate # Disabled due to flakiness | ||
# - id: terraform_tfsec # Temporarily disabled due to PSP warnings on GKE | ||
# - id: checkov # Disabled due to crashing | ||
- id: terraform_validate | ||
- id: terraform_tfsec | ||
exclude: "test/" | ||
- id: terraform_checkov | ||
exclude: "test/" | ||
- repo: https://github.com/gitguardian/ggshield | ||
rev: v1.14.2 | ||
hooks: | ||
- id: ggshield | ||
language: python | ||
stages: [commit] | ||
args: [ 'secret', 'scan', 'pre-commit' ] |