From 11c0ae91619588475bdba08c69d06954863b6149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Acu=C3=B1a?= Date: Thu, 13 Nov 2025 10:01:08 -0300 Subject: [PATCH] GH issue creation command fix --- .github/workflows/Procedure_push_docker_images.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/Procedure_push_docker_images.yml b/.github/workflows/Procedure_push_docker_images.yml index 3b0518b9..22dd0ae4 100644 --- a/.github/workflows/Procedure_push_docker_images.yml +++ b/.github/workflows/Procedure_push_docker_images.yml @@ -218,17 +218,17 @@ jobs: ## GH issue creation ISSUE_URL=$(gh issue create \ -R wazuh/${{ secrets.NOTIFICATION_REPO }} \ - --title $GH_TITLE \ - --body $GH_MESSAGE \ + --title "$GH_TITLE" \ + --body "$GH_MESSAGE" \ --label "level/task" \ --label "type/maintenance" \ - --label "request/operational" \ - --json url -q .url) + --label "request/operational") ## Adding the issue to the team project gh project item-add \ ${{ secrets.NOTIFICATION_PROJECT_ID }} \ - --url $ISSUE_URL + --url $ISSUE_URL \ + --owner wazuh - env: - GH_TOKEN: ${{ secrets.NOTIFICATION_GH_ARTIFACT_TOKEN }} + env: + GH_TOKEN: ${{ secrets.NOTIFICATION_GH_ARTIFACT_TOKEN }}