From f66740fdbd5f3522048c148b4f7c4715aea73160 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Tue, 8 Feb 2022 09:22:16 +0100 Subject: [PATCH] github: fix gitlab trigger MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With the quoting, we are passing an empty variable instead of no argument. Also, if the skip is required, we are passing "-o ci.skip" instead of "-o" "ci.skip". Signed-off-by: Ondřej Budai --- .github/workflows/trigger-gitlab.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger-gitlab.yml b/.github/workflows/trigger-gitlab.yml index e75462e14..eb92d0e00 100644 --- a/.github/workflows/trigger-gitlab.yml +++ b/.github/workflows/trigger-gitlab.yml @@ -62,4 +62,4 @@ jobs: fi [[ "${SKIP_CI}" == true ]] && PUSH_OPTION="-o ci.skip" || PUSH_OPTION="" - git push -f ci "${PUSH_OPTION}" + git push -f ${PUSH_OPTION} ci