summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTasos Katsoulas <tasos@netdata.cloud>2024-03-08 15:52:31 +0200
committerTasos Katsoulas <tasos@netdata.cloud>2024-03-08 15:52:31 +0200
commitee8f851015612e93409a00d461d27102e46e26e7 (patch)
treeba92b1282c4c187926f34c6fb500392bb74bb79b
parent3a577a184c73e6dc865bfebcbf0f84ec3b36a024 (diff)
Fix paroramafix-action-lints
Signed-off-by: Tasos Katsoulas <tasos@netdata.cloud>
-rw-r--r--.github/workflows/cloud_regression.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/cloud_regression.yml b/.github/workflows/cloud_regression.yml
index 53ddde2326..67a55ed2a7 100644
--- a/.github/workflows/cloud_regression.yml
+++ b/.github/workflows/cloud_regression.yml
@@ -22,16 +22,16 @@ jobs:
PR_COMMIT_HASH: ${{ github.event.pull_request.head.sha }}
id: output-workflow-dispatch-params
run: |
- if [ "${github.event_name}" == 'pull_request_target' ]; then
+ if [ "${{ github.event_name }}" == 'pull_request_target' ]; then
NETDATA_CUSTOM_REPO="$PR_REPO_NAME"
NETDATA_CUSTOM_BRANCH="$PR_BRANCH_NAME"
- NETDATA_CUSTOM_PR_NUMBER="${github.event.number}"
+ NETDATA_CUSTOM_PR_NUMBER="${{ github.event.number }}"
NETDATA_CUSTOM_COMMIT_HASH="$PR_COMMIT_HASH"
- elif [ "${github.event_name}" == 'push' ]; then
+ elif [ "${{ github.event_name }}" == 'push' ]; then
NETDATA_CUSTOM_REPO="netdata/netdata"
NETDATA_CUSTOM_BRANCH="master"
NETDATA_CUSTOM_PR_NUMBER=""
- NETDATA_CUSTOM_COMMIT_HASH="${github.sha}"
+ NETDATA_CUSTOM_COMMIT_HASH="${{ github.sha }}"
fi
{