mirror of
https://github.com/actions/runner-images.git
synced 2026-01-10 12:41:43 +08:00
25 lines
465 B
YAML
25 lines
465 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 * * *' # Run at midnight UTC every day
|
|
|
|
permissions:
|
|
issues: write
|
|
contents: read
|
|
|
|
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
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|