mirror of
https://github.com/actions/runner-images.git
synced 2026-01-07 10:48:55 +08:00
19 lines
365 B
YAML
19 lines
365 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 * * *' # Run at midnight UTC every day
|
|
|
|
jobs:
|
|
validate-json:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Validate JSON Schema
|
|
shell: pwsh
|
|
run: ./helpers/CheckOutdatedVersionPinning.ps1
|