📝 docs: rename test_docker_only parameter to docker_only for clarity

This commit is contained in:
2026-04-09 09:08:30 +02:00
parent 13f32378e6
commit 6055d444f8

View File

@@ -13,8 +13,8 @@ on:
required: false
type: boolean
default: false
test_docker_only:
description: 'Test only Docker push steps (requires skip_ci=true)'
docker_only:
description: 'Run only Docker push steps (requires skip_ci=true)'
required: false
type: boolean
default: false
@@ -321,7 +321,7 @@ jobs:
name: Docker Push
needs: build-cache
runs-on: ubuntu-latest-ca
if: "!contains(github.event.head_commit.message, '[skip ci]') && github.actor != 'ci-bot' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature/move-docker-job' || github.event.inputs.test_docker_only == 'true')"
if: "!contains(github.event.head_commit.message, '[skip ci]') && github.actor != 'ci-bot' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature/move-docker-job' || github.event.inputs.docker_only == 'true')"
steps:
- name: Checkout code