This repository has been archived by the owner on Jul 15, 2024. It is now read-only.
Update repos.json - Update Minecraft Version #297
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate repos.json | |
on: | |
push: | |
branches: | |
- gh-pages | |
paths: | |
- 'resources/repos.json' | |
pull_request: | |
branches: | |
- gh-pages | |
paths: | |
- 'resources/repos.json' | |
jobs: | |
validate: | |
name: Validate JSON | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Validate JSON | |
uses: docker://orrosenblatt/validate-json-action:latest@sha256:02370758b8b199e0477da11ecfdd498c75c561685056b5c31b925a4ab95df7f4 | |
env: | |
INPUT_SCHEMA: resources/schema.json | |
INPUT_JSONS: resources/repos.json |