fix(ci): add image_tag input for manual triggers in integration workflows

This commit is contained in:
GitHub Actions
2026-02-04 14:08:36 +00:00
parent e1c7ed3a13
commit 8edde88f95
4 changed files with 24 additions and 6 deletions

View File

@@ -7,6 +7,11 @@ on:
branches: [main, development, 'feature/**'] # Explicit branch filter prevents unexpected triggers
# Allow manual trigger for debugging
workflow_dispatch:
inputs:
image_tag:
description: 'Docker image tag to test (e.g., pr-123-abc1234, latest)'
required: false
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}