From 95c924968ac27788b80cdf2a5c078d771fd2b25d Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Sat, 9 Sep 2023 11:51:53 +0000 Subject: [PATCH] circleci: migrate to scheduled pipelines https://circleci.com/docs/migrate-scheduled-workflows-to-scheduled-pipelines/ --- .circleci/config.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 903d95f..3751bc5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,18 +47,6 @@ commands: - invoke-lazy-sh: subcommand: docdep - trigger-pipeline: - parameters: - body_no_shell_subst: - type: string - steps: - - run: | - curl -X POST https://circleci.com/api/v2/project/github/zrepl/zrepl/pipeline \ - -H 'Content-Type: application/json' \ - -H 'Accept: application/json' \ - -H "Circle-Token: $ZREPL_BOT_CIRCLE_TOKEN" \ - --data '<>' - docs-publish-sh: parameters: push: @@ -161,18 +149,6 @@ workflows: - release-deb - release-rpm - periodic: - triggers: - - schedule: - cron: "00 17 * * *" - filters: - branches: - only: - - master - - stable - jobs: - - periodic-full-pipeline-run - publish-zrepl.github.io: jobs: - publish-zrepl-github-io: @@ -310,13 +286,6 @@ jobs: - store_artifacts: path: artifacts - periodic-full-pipeline-run: - docker: - - image: cimg/base:2020.08 - steps: - - trigger-pipeline: - body_no_shell_subst: '{"branch":"<>", "parameters": { "do_ci": true, "do_release": true }}' - publish-zrepl-github-io: docker: - image: cimg/base:2023.09