mirror of
https://github.com/actions/runner-images.git
synced 2025-12-25 02:47:41 +08:00
21 lines
453 B
YAML
21 lines
453 B
YAML
name: Trigger Windows19 CI
|
|
run-name: Windows2019 - ${{ github.event.pull_request.title }}
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: labeled
|
|
paths:
|
|
- 'images/windows/**'
|
|
|
|
defaults:
|
|
run:
|
|
shell: pwsh
|
|
|
|
jobs:
|
|
Windows_2019:
|
|
if: github.event.label.name == 'CI windows-all' || github.event.label.name == 'CI windows-2019'
|
|
uses: ./.github/workflows/trigger-ubuntu-win-build.yml
|
|
with:
|
|
image_type: 'windows2019'
|
|
secrets: inherit
|