reviewdog / action-ansiblelint

Run ansible-lint with reviewdog πŸ•

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Action: Run ansible-lint with reviewdog πŸ•

Docker Image CI Release

This action runs ansible-lint with reviewdog on pull requests to improve code review experience.

github-pr-check sample github-pr-review sample

Inputs

github_token

Optional. ${{ github.token }} is used by default.

level

Optional. Report level for reviewdog [info,warning,error]. It's same as -level flag of reviewdog.

reporter

Reporter of reviewdog command [github-pr-check,github-check,github-pr-review]. Default is github-pr-check. It's same as -reporter flag of reviewdog.

github-pr-review can use Markdown and add a link to rule page in reviewdog reports.

filter_mode

Optional. Filtering mode for the reviewdog command [added,diff_context,file,nofilter]. Default is added.

fail_on_error

Optional. Exit code for reviewdog when errors are found [true,false]. Default is false.

reviewdog_flags

Optional. Additional reviewdog flags.

ansiblelint_version

Optional. The ansible-lint version to use. Default is 5.0.2.

ansiblellint_flags

Optional. Flags and args of ansible-lint command.

Example usage

You can create ansible-lint config.

name: reviewdog
on: [pull_request]
jobs:
  ansible-lint:
    name: runner / ansible-lint 
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v2
        with:
          python-version: "3.6"
      - name: ansible-lint
        uses: reviewdog/action-ansiblelint@v1
        with:
          github_token: ${{ secrets.github_token }}
          reporter: github-pr-review # Change reporter.
          ansiblelint_flags: '-x core playbook/*'

About

Run ansible-lint with reviewdog πŸ•

License:MIT License


Languages

Language:Shell 100.0%