Skip to content

Commit

Permalink
rrr
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluscream committed Aug 18, 2024
1 parent a2696bd commit 7ce3fda
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 46 deletions.
1 change: 1 addition & 0 deletions .github/workflows/generate-sitemap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
# # git push

- name: Push sitemap.xml
continue-on-error: true
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[bot] Generate sitemap.xml"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sort_sources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
# git push
- name: Push sorted JSON
continue-on-error: true
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[bot] Sort sources.json"
1 change: 1 addition & 0 deletions .github/workflows/validate-ammarlakis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
with:
fetch-depth: 0
- name: Validate sources.json
continue-on-error: true
uses: ammarlakis/action-ajv@master
with:
data: sources.json
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/validate-changed-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
files: |
.github/workflows/**.yml
- name: Validate workflows
continue-on-error: true
if: steps.check-for-changed-workflows.outputs.any_changed == 'true'
uses: dsanders11/json-schema-validate-action@main
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/validate-dsanders11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
with:
fetch-depth: 0
- name: Validate sources.json
continue-on-error: true
uses: dsanders11/json-schema-validate-action@main
with:
files: sources.json
Expand Down
52 changes: 6 additions & 46 deletions .github/workflows/validate-walbo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,54 +8,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Validate manifest.json
- name: Validate sources.json
continue-on-error: true
uses: walbo/validate-json@main
with:
files: manifest.json
files: sources.json
schema: schemas/manifest.schema.json
schema-version: draft-06
schema-version: draft-07
allow-union-types: true
strict: false
- name: Validate *.config.json
uses: walbo/validate-json@main
with:
files: '*.config.json'
schema: schemas/config.schema.json
schema-version: draft-06
allow-union-types: true
strict: false
- name: Validate *.metaconfig.json
uses: walbo/validate-json@main
with:
files: '*.metaconfig.json'
schema: schemas/metaconfig.schema.json
schema-version: draft-06
allow-union-types: true
strict: false
- name: Validate *.updates.json
uses: walbo/validate-json@main
with:
files: '*.updates.json'
schema: schemas/updates.schema.json
schema-version: draft-06
allow-union-types: true
strict: false
- name: Validate *.ports.json
uses: walbo/validate-json@main
with:
files: '*.ports.json'
schema: schemas/ports.schema.json
schema-version: draft-06
allow-union-types: true
strict: false
- name: Validate *.generator.json
uses: walbo/validate-json@main
with:
files: '*.generator.json'
schema: schemas/generator.schema.json
schema-version: draft-06
allow-union-types: true
strict: false
# allow-matching-properties: true

# print-valid-files: false
allow-matching-properties: false
# print-valid-files: false

0 comments on commit 7ce3fda

Please sign in to comment.