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

Add missing extension to docs links #4494

Merged
merged 1 commit into from
Sep 17, 2024
Merged
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
6 changes: 3 additions & 3 deletions docs/docs/understand/rule_evaluation.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ To view the rule evaluations, run [`minder history list`](../ref/cli/minder_hist

The _status_ of a rule evaluation describes the outcome of executing the rule against an entity. Possible statuses are:

* **Success**: the entity was evaluated and is in compliance with the rule. For example, given the [`secret_scanning`](../ref/rules/secret_scanning) rule, this means that secret scanning is enabled on the repository being evaluated.
* **Failure**: the entity was evaluated and is _not_ in compliance with the rule. For example, given the [`secret_scanning`](../ref/rules/secret_scanning) rule, this means that secret scanning is _not_ enabled on the repository being evaluated.
* **Success**: the entity was evaluated and is in compliance with the rule. For example, given the [`secret_scanning`](../ref/rules/secret_scanning.md) rule, this means that secret scanning is enabled on the repository being evaluated.
* **Failure**: the entity was evaluated and is _not_ in compliance with the rule. For example, given the [`secret_scanning`](../ref/rules/secret_scanning.md) rule, this means that secret scanning is _not_ enabled on the repository being evaluated.
* **Error**: the rule could not be evaluated for some reason. For example, the server being evaluated was not online or could not be contacted.
* **Pending**: the rule has not yet been evaluated. Once evaluated, it will move into a state that represents the evaluation.
* **Skipped**: the rule is not configured for the entity. For example, given the [`secret_scanning`](../ref/rules/secret_scanning) rule, it can be configured to skip private repositories.
* **Skipped**: the rule is not configured for the entity. For example, given the [`secret_scanning`](../ref/rules/secret_scanning.md) rule, it can be configured to skip private repositories.

### Alert status

Expand Down