We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 118846c commit 7e59f9fCopy full SHA for 7e59f9f
.circleci/continue_config.yml
@@ -213,6 +213,12 @@ jobs:
213
- image: cimg/base:2021.11
214
resource_class: small
215
steps:
216
+ - checkout
217
+ - run:
218
+ name: Get commit message
219
+ command: |
220
+ echo "export COMMIT_MESSAGE=\"$(git log --format=%s%b -n 1 $CIRCLE_SHA1)\"" >> "$BASH_ENV"
221
+ source "$BASH_ENV"
222
- run:
223
name: Trigger private tests
224
command: |
@@ -228,7 +234,7 @@ jobs:
228
234
"sqlmesh_branch":"'$CIRCLE_BRANCH'",
229
235
"sqlmesh_commit_author":"'$CIRCLE_USERNAME'",
230
236
"sqlmesh_commit_hash":"'$CIRCLE_SHA1'",
231
- "sqlmesh_commit_pr":"'$CIRCLE_PULL_REQUEST'"
237
+ "sqlmesh_commit_message":"'$COMMIT_MESSAGE'"
232
238
}
233
239
}'
240
0 commit comments