Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,26 @@ jobs:
root: web/client
paths:
- dist
trigger_private_renovate:
docker:
- image: cimg/base:2021.11
resource_class: small
steps:
- run:
name: Trigger private renovate
command: |
curl --request POST \
--url $TOBIKO_PRIVATE_CIRCLECI_URL \
--header "Circle-Token: $TOBIKO_PRIVATE_CIRCLECI_KEY" \
--header "content-type: application/json" \
--data '{
"branch":"main",
"parameters":{
"run_main_pr":false,
"run_sqlmesh_commit":false,
"run_renovate":true
}
}'

workflows:
setup-workflow:
Expand All @@ -78,7 +98,11 @@ workflows:
<<: *on_tag_filter
requires:
- gh-release
- trigger_private_renovate:
<<: *on_tag_filter
requires:
- gh-release
- publish:
<<: *on_tag_filter
requires:
- ui-build
- ui-build