From d6011e4465d4cb0d0a6fb872dab3ed089f404a75 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 22 Jul 2026 09:50:00 +0200 Subject: [PATCH] CircleCI: get rid of "approval" step. --- .circleci/config.yml | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a031b6e18..5d6fb824c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -172,27 +172,10 @@ jobs: - store_artifacts: path: pandoc.wasm.zip -# Each build is gated behind an approval job, which is the CircleCI equivalent of -# Cirrus's `trigger_type: manual` — nothing runs until you click "Approve" in the UI. workflows: release: jobs: - - hold_macos_arm64: - type: approval - - macos_arm64: - requires: [hold_macos_arm64] - - - hold_linux_amd64: - type: approval - - linux_amd64: - requires: [hold_linux_amd64] - - - hold_linux_arm64: - type: approval - - linux_arm64: - requires: [hold_linux_arm64] - - - hold_wasm: - type: approval - - wasm: - requires: [hold_wasm] + - macos_arm64 + - linux_amd64 + - linux_arm64 + - wasm