mirror of
https://github.com/actions/runner-images.git
synced 2025-12-25 19:11:28 +08:00
21 lines
450 B
YAML
21 lines
450 B
YAML
name: Trigger Ubuntu20.04 CI
|
|
run-name: Ubuntu20.04 - ${{ github.event.pull_request.title }}
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: labeled
|
|
paths:
|
|
- 'images/ubuntu/**'
|
|
|
|
defaults:
|
|
run:
|
|
shell: pwsh
|
|
|
|
jobs:
|
|
Ubuntu_2004:
|
|
if: github.event.label.name == 'CI ubuntu-all' || github.event.label.name == 'CI ubuntu-2004'
|
|
uses: ./.github/workflows/trigger-ubuntu-win-build.yml
|
|
with:
|
|
image_type: 'ubuntu2004'
|
|
secrets: inherit
|