mirror of
https://github.com/coredns/coredns.git
synced 2025-11-02 10:13:14 -05:00
20 lines
512 B
YAML
20 lines
512 B
YAML
name: 'Yamllint GitHub Actions'
|
|
on:
|
|
- pull_request
|
|
permissions: read-all
|
|
jobs:
|
|
yamllint:
|
|
name: 'Yamllint'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v4
|
|
- name: 'Yamllint'
|
|
uses: karancode/yamllint-github-action@fdef6bc189425ecc84cc4543b2674566c0827053
|
|
with:
|
|
yamllint_file_or_dir: '.'
|
|
yamllint_strict: false
|
|
yamllint_comment: true
|
|
env:
|
|
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|