Skip to content

Latest commit

 

History

History

github-org

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Mondoo GitHub Organization Action

A GitHub Action for using Mondoo to scan a GitHub Organization for security misconfigurations such as branch protection, CI tests, required code-review, and more. This Action can be used to audit individual GitHub repositories. This Action can be easily used in .github or .github-private repositories.

Permissions

Depending on the amount that should be covered, you need to provide the proper permissions to the token. Since Mondoo only reads values, only read only permissions are required.

Permission Description
read:org e.g. required to verify GitHub organizations
admin:org_hook e.g. required to verify that all hooks use https
repo Ability to read configuration, required since GitHub does not provide a repo:read permission
workflow eg. allows the verification of workflow settings
read:packages e.g. allows to verify that packages are not public

Properties

The GitHub Organization Action has properties which are passed to the underlying image. These are passed to the action using with.

Property Required Default Description
organization true GitHub organization to scan eg. mondoohq.
log-level false info Sets the log level: error, warn, info, debug, trace (default "info")
output false compact Set the output format for scan results: compact, yaml, json, junit, csv, summary, full, report (default "compact")
score-threshold false 0 Sets the score threshold for scans. Scores that fall below the threshold will exit 1. (default "0" - job continues regardless of the score returned by a scan).
is-cicd false true Flag to disable the auto-detection for CI/CD runs. If deactivated it reports into the Fleet view

Additionally, you need to specify the service account and GitHub credentials as an environment variable.

Environment Required Default Description
MONDOO_CONFIG_BASE64 true Base64 encoded service account credentials used to authenticate with Mondoo Platform
GITHUB_TOKEN true GitHub token used for authentication

Scan GitHub organization

You can use the Action as follows:

name: Scan GitHub organization
on: push

jobs:
  scan-github-org:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: mondoohq/actions/[email protected]
        env:
          MONDOO_CONFIG_BASE64: ${{ secrets.MONDOO_SERVICE_ACCOUNT }}
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          organization: ${{ GITHUB_REPOSITORY_OWNER }}