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(general): Fix typo in docs #3694

Merged
merged 3 commits into from
Nov 2, 2022
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
2 changes: 1 addition & 1 deletion docs/2.Basics/Hard and soft fail.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The table below shows how different values of `--soft-fail`, `--soft-fail-on`, a
|Soft Fail|Soft Fail On|Hard Fail On|Scan Result|Comments|
|-|-|-|-|-|
|True | - | - |0 (soft fail)|All errors are soft fails|
|False|CKV_123|-|1 (hard fail)|Soft fail requires all failures to match a soft fail critera|
|False|CKV_123|-|1 (hard fail)|Soft fail requires all failures to match a soft fail criteria|
|False|-|CKV_999|0|Every failed check did not match a hard fail criteria, so the result is implicitly soft fail|
|False|LOW,CKV_789|CKV_123|1|The explicit match of the hard fail criteria results in a hard fail|
|False|CKV_789|HIGH|1|CKV_789 explicitly matches a soft fail criteria, which overrides the hard fail. But CKV_123 is not in either list, so defaults to the value of `--soft-fail`, which is false|
Expand Down
4 changes: 2 additions & 2 deletions docs/4.Integrations/GitHub Actions.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
layout: default
published: true
title: Github Actions
title: GitHub Actions
nav_order: 3
---

# Integrate Checkov with Github Actions
# Integrate Checkov with GitHub Actions

Integrating Checkov into GitHub Actions provides a simple, automatic way of applying policies to your Terraform code both during pull request review and as part of any build process.

Expand Down