From 6c768837be3a5e5d44fb57645a93a07553c0c724 Mon Sep 17 00:00:00 2001 From: Alexey-Ayupov <116575425+Alexey-Ayupov@users.noreply.github.com> Date: Thu, 28 Nov 2024 20:09:12 +0100 Subject: [PATCH] Add trigger to run Windows 2025 CI (#11063) --- .github/workflows/windows2025.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/windows2025.yml diff --git a/.github/workflows/windows2025.yml b/.github/workflows/windows2025.yml new file mode 100644 index 000000000..c5948f83c --- /dev/null +++ b/.github/workflows/windows2025.yml @@ -0,0 +1,20 @@ +name: Trigger Windows25 CI +run-name: Windows2025 - ${{ github.event.pull_request.title }} + +on: + pull_request_target: + types: labeled + paths: + - 'images/windows/**' + +defaults: + run: + shell: pwsh + +jobs: + Windows_2022: + if: github.event.label.name == 'CI windows-all' || github.event.label.name == 'CI windows-2025' + uses: ./.github/workflows/trigger-ubuntu-win-build.yml + with: + image_type: 'windows2025' + secrets: inherit