Skip to content

Example of Image Digest Mirror #70

Example of Image Digest Mirror

Example of Image Digest Mirror #70

Workflow file for this run

---
name: 'Yamllint'
"on":
push:
branches:
- main
paths:
- '**.yaml'
pull_request:
paths:
- '**.yaml'
jobs:
yamllint:
name: 'Yamllint'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@master
- name: 'Yamllint'
uses: karancode/yamllint-github-action@master
with:
yamllint_config_datapath: '{"extends": "relaxed", "rules": "{line-length: {max: 120}}"}'
yamllint_file_or_dir: './'
yamllint_strict: false
yamllint_comment: true
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}