mirror of
https://github.com/lunchcat/sif.git
synced 2026-07-28 22:40:54 -07:00
0caca05467
Bumps [reviewdog/action-yamllint](https://github.com/reviewdog/action-yamllint) from 1.21.0 to 1.22.0. - [Release notes](https://github.com/reviewdog/action-yamllint/releases) - [Commits](https://github.com/reviewdog/action-yamllint/compare/v1.21.0...v1.22.0) --- updated-dependencies: - dependency-name: reviewdog/action-yamllint dependency-version: 1.22.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
434 B
YAML
24 lines
434 B
YAML
name: yaml lint
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**/*.yml"
|
|
- "**/*.yaml"
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
yamllint:
|
|
name: runner / yamllint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- name: yamllint
|
|
uses: reviewdog/action-yamllint@v1.22.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-review
|