Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/reusable-build-iso-anaconda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ name: Build ISOs (Live Anaconda)

on:
workflow_dispatch:
inputs:
image_version:
description: 'Which image version to build'
type: choice
required: true
default: 'all'

Copilot AI Aug 8, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The input parameter is added but there's no corresponding logic in the workflow to actually use this image_version input. The parameter will be ignored unless the workflow steps are updated to reference ${{ inputs.image_version }} to conditionally build only the selected image versions.

Copilot uses AI. Check for mistakes.
options:
- lts
- gts
- stable
- all
pull_request:
paths:
- ".github/workflows/reusable-build-iso-anaconda.yml"
Expand Down
Loading