Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: HOWTO #1

Merged
merged 9 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@aviatrix-automation/dev-engg
Binary file added .github/images/Aviatrix_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions .github/workflows/aviatrix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Aviatrix Checks

on:
pull_request:
types: [opened, edited, synchronize, reopened]

permissions: read-all

jobs:
aviatrix-check:
uses: AvxSre/sre-workflows/.github/workflows/aviatrix.yml@main
with:
jira-check-commits: false
jira-check: false
51 changes: 51 additions & 0 deletions .github/workflows/checkov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Checkov Checks

# Controls when the workflow will run
on:
# Triggers the workflow on pull request events but only for the "main" branch
pull_request:
branches:
- main
paths:
- "**.tf"

# Allows you to run this workflow manually from the Actions tab
# trunk-ignore(yamllint/empty-values)
workflow_dispatch:

permissions: read-all

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "scan"
scan:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status

# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so follow-up steps can access it
- uses: actions/checkout@v3

- name: Checkov GitHub Action
uses: bridgecrewio/checkov-action@v12.2138.0
with:
# This will add both a CLI output to the console and create a results.sarif file
quiet: true

# - name: Upload SARIF file
# uses: github/codeql-action/upload-sarif@v2

# # Results are generated only on a success or failure
# # this is required since GitHub by default won't run the next step
# # when the previous one has failed. Security checks that do not pass will 'fail'.
# # An alternative is to add `continue-on-error: true` to the previous step
# # Or 'soft_fail: true' to checkov.
# if: success() || failure()
# with:
# sarif_file: results.sarif
Loading