From 251444b8a47bac39320001c64739a805025e5ec7 Mon Sep 17 00:00:00 2001 From: Sebastien Flory Date: Thu, 28 Nov 2024 11:39:02 +0100 Subject: [PATCH] add log --- .github/workflows/deploy-front-edge.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-front-edge.yml b/.github/workflows/deploy-front-edge.yml index fe1267ac49d4..11aad5cc90d7 100644 --- a/.github/workflows/deploy-front-edge.yml +++ b/.github/workflows/deploy-front-edge.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: bypass_check_deployment_blocked: - description: "Bypass check deployment blocked from Slack channel topic" + description: "Bypass deployment block check" required: true default: false type: boolean @@ -25,6 +25,11 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + - name: Log inputs + run: | + echo "Bypass deployment block check: ${{ github.event.inputs.bypass_check_deployment_blocked }}" + echo "Inputs: ${{ github.event.inputs }}" + - name: Get short sha id: short_sha run: echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT