Skip to content

Update uhd-bluray-web.yml #49

Update uhd-bluray-web.yml

Update uhd-bluray-web.yml #49

Workflow file for this run

name: Check Dates
on:
pull_request:
jobs:
check_dates:
name: Check Dates
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Get Changed Files
id: files
uses: tj-actions/changed-files@v45
with:
separator: ","
- name: Check Dates
shell: pwsh
run: |
$files = "${{ steps.files.outputs.all_changed_files }}".Split(',')
$nowDate = Get-Date -Format "yyyy-MM-dd"
ci/CheckInvalidDates.ps1 $files $nowDate