mirror of
https://github.com/louislam/dockge.git
synced 2024-11-24 11:54:03 +00:00
28 lines
624 B
YAML
28 lines
624 B
YAML
|
name: json-yaml-validate
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
- 2.0.X
|
||
|
workflow_dispatch:
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
pull-requests: write # enable write permissions for pull request comments
|
||
|
|
||
|
jobs:
|
||
|
json-yaml-validate:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: json-yaml-validate
|
||
|
id: json-yaml-validate
|
||
|
uses: GrantBirki/json-yaml-validate@v1.3.0
|
||
|
with:
|
||
|
comment: "false" # enable comment mode
|
||
|
exclude_file: ".github/config/exclude.txt" # gitignore style file for exclusions
|