mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-05 17:16:59 +02:00
Bumps the dev-dependencies group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [mindsers/changelog-reader-action](https://github.com/mindsers/changelog-reader-action). Updates `actions/checkout` from 4.1.1 to 4.1.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](b4ffde65f4...9bb56186c3
) Updates `mindsers/changelog-reader-action` from 2.2.2 to 2.2.3 - [Release notes](https://github.com/mindsers/changelog-reader-action/releases) - [Changelog](https://github.com/mindsers/changelog-reader-action/blob/master/CHANGELOG.md) - [Commits](b97ce03a10...32aa5b4c15
) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: mindsers/changelog-reader-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
596 B
YAML
24 lines
596 B
YAML
name: json-yaml-validate
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write # enable write permissions for pull requests
|
|
|
|
jobs:
|
|
json-yaml-validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
|
|
|
|
- name: json-yaml-validate
|
|
uses: GrantBirki/json-yaml-validate@v2.6.1
|
|
with:
|
|
comment: "true" # enable comment mode
|
|
yaml_exclude_regex: "(charts/external-dns/templates.*|mkdocs.yml)"
|