mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
28 lines
976 B
YAML
28 lines
976 B
YAML
run-name: Ubuntu22.04 - ${{ (github.event.pull_request.title || 'scheduled/manual run') }}
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
CUSTOM_REPOSITORY:
|
|
description: 'Custom repository (owner/repo)'
|
|
required: false
|
|
CUSTOM_REPOSITORY_COMMIT_HASH:
|
|
description: 'Commit hash'
|
|
required: false
|
|
pull_request_target:
|
|
types: labeled
|
|
paths:
|
|
- 'images/linux/**'
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
Ubuntu_2204:
|
|
if: ${{ (github.event.label.name == 'CI:\ ubuntu-all') || (github.event.label.name == 'CI:\ ubuntu-2204') || (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') }}
|
|
uses: ./.github/workflows/ubuntu-win-generation.yml
|
|
with:
|
|
image_name: 'ubuntu2204'
|
|
image_readme_name: 'Ubuntu2204-Readme.md'
|
|
custom_repo: ${{ github.event.inputs.CUSTOM_REPOSITORY }}
|
|
custom_repo_commit_hash: ${{ github.event.inputs.CUSTOM_REPOSITORY_COMMIT_HASH }}
|
|
secrets: inherit
|