From 6055d444f81f7f26394924002f1e735aae9cde2a Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Thu, 9 Apr 2026 09:08:30 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs:=20rename=20test=5Fdocker?= =?UTF-8?q?=5Fonly=20parameter=20to=20docker=5Fonly=20for=20clarity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci-cd.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci-cd.yaml b/.gitea/workflows/ci-cd.yaml index 12c2de5..4074b39 100644 --- a/.gitea/workflows/ci-cd.yaml +++ b/.gitea/workflows/ci-cd.yaml @@ -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