From e3cf149149993831fd186ec8106bf1c553c09d35 Mon Sep 17 00:00:00 2001 From: Wojciech Piotrowiak Date: Fri, 6 Oct 2023 10:06:40 +0200 Subject: [PATCH] AAE-17087 math comparision --- .github/actions/send-slack-notification-slow-job/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/send-slack-notification-slow-job/action.yml b/.github/actions/send-slack-notification-slow-job/action.yml index 11c28fa3b..e02c50459 100644 --- a/.github/actions/send-slack-notification-slow-job/action.yml +++ b/.github/actions/send-slack-notification-slow-job/action.yml @@ -24,7 +24,7 @@ runs: echo "total_time=${total_time}" >> $GITHUB_OUTPUT - name: Slack Notification - if: steps.fetch_time.outputs.total_time > inputs.max-build-time-seconds + if: fromJSON(steps.fetch_time.outputs.total_time) > fromJSON(inputs.max-build-time-seconds) uses: Alfresco/alfresco-build-tools/.github/actions/send-slack-notification@v3.4.0 with: channel-id: ${{ inputs.slack-channel }}