Skip to content

Update and rename mirroring.yml to validate+sync.yml #1

Update and rename mirroring.yml to validate+sync.yml

Update and rename mirroring.yml to validate+sync.yml #1

Workflow file for this run

name: validate & sync
on:
workflow_dispatch:
pull_request:
branches: [ master ]
jobs:
lint-and-validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: PHP Lint
uses: michaelw90/[email protected]
- name: Check for any changed config.json files
id: check-for-changed-configs
uses: tj-actions/changed-files@v41
with:
files: |
configs/conferences/**/config.json
- name: Validate json files
if: steps.check-for-changed-configs.outputs.any_changed == 'true'
uses: dsanders11/json-schema-validate-action
with:
schema: docs/config-schema.json
files: configs/conferences/**/config.json
mirror:
if: secrets.SSH_PRIVATE_KEY != ''
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Mirror to VOC gitolite
uses: pixta-dev/[email protected]
with:
target_repo_url:
[email protected]:streaming-website.git
ssh_private_key:
${{ secrets.SSH_PRIVATE_KEY }}