Skip to content

Commit ff898ca

Browse files
authored
fix: modify test webhook (#2352)
* unquote env vars * lint yml * enable webhook * finalize * build url instead of pr * test get commit message * finalize * delete extra job call * remove environment * test commit message * quote commit message * uncomment
1 parent 7e59f9f commit ff898ca

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.circleci/continue_config.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -215,13 +215,10 @@ jobs:
215215
steps:
216216
- checkout
217217
- run:
218-
name: Get commit message
218+
name: Trigger private tests
219219
command: |
220220
echo "export COMMIT_MESSAGE=\"$(git log --format=%s%b -n 1 $CIRCLE_SHA1)\"" >> "$BASH_ENV"
221221
source "$BASH_ENV"
222-
- run:
223-
name: Trigger private tests
224-
command: |
225222
curl --request POST \
226223
--url $TOBIKO_PRIVATE_CIRCLECI_URL \
227224
--header "Circle-Token: $TOBIKO_PRIVATE_CIRCLECI_KEY" \
@@ -234,7 +231,7 @@ jobs:
234231
"sqlmesh_branch":"'$CIRCLE_BRANCH'",
235232
"sqlmesh_commit_author":"'$CIRCLE_USERNAME'",
236233
"sqlmesh_commit_hash":"'$CIRCLE_SHA1'",
237-
"sqlmesh_commit_message":"'$COMMIT_MESSAGE'"
234+
"sqlmesh_commit_message":"'"$COMMIT_MESSAGE"'"
238235
}
239236
}'
240237

0 commit comments

Comments
 (0)