mirror of
https://github.com/actions/runner-images.git
synced 2025-12-24 18:39:49 +08:00
21 lines
498 B
YAML
21 lines
498 B
YAML
name: Trigger Ubuntu22.04 CI
|
|
run-name: Ubuntu22.04 - ${{ github.event.pull_request.title }}
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: labeled
|
|
paths:
|
|
- 'images/ubuntu/**'
|
|
|
|
defaults:
|
|
run:
|
|
shell: pwsh
|
|
|
|
jobs:
|
|
Ubuntu_2204:
|
|
if: contains(github.event.pull_request.labels.*.name, 'CI ubuntu-all') || contains(github.event.pull_request.labels.*.name, 'CI ubuntu-2204')
|
|
uses: ./.github/workflows/trigger-ubuntu-win-build.yml
|
|
with:
|
|
image_type: 'ubuntu2204'
|
|
secrets: inherit
|