Skip to content

Commit bb104a5

Browse files
authored
Fix: fix testing webhook parameters (#2339)
* unquote env vars * lint yml * enable webhook * finalize
1 parent 765b737 commit bb104a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/continue_config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,10 @@ jobs:
225225
"parameters":{
226226
"run_main_pr":false,
227227
"run_sqlmesh_commit":true,
228-
"sqlmesh_branch":"'"$CIRCLE_BRANCH"'",
229-
"sqlmesh_commit_author":"'"$CIRCLE_USERNAME"'",
230-
"sqlmesh_commit_hash":"'"$CIRCLE_SHA1"'",
231-
"sqlmesh_commit_pr":"'"$CIRCLE_PULL_REQUEST"'"
228+
"sqlmesh_branch":"'$CIRCLE_BRANCH'",
229+
"sqlmesh_commit_author":"'$CIRCLE_USERNAME'",
230+
"sqlmesh_commit_hash":"'$CIRCLE_SHA1'",
231+
"sqlmesh_commit_pr":"'$CIRCLE_PULL_REQUEST'"
232232
}
233233
}'
234234

0 commit comments

Comments
 (0)