From c8122d118fee849af77a9a89369356e04c91b3ad Mon Sep 17 00:00:00 2001 From: Lucas Kacher Date: Thu, 1 Dec 2022 15:13:35 -0800 Subject: [PATCH 1/3] feat: update template --- src/@orb.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/@orb.yml b/src/@orb.yml index 7379326..5c26f52 100755 --- a/src/@orb.yml +++ b/src/@orb.yml @@ -1,15 +1,7 @@ version: 2.1 description: > - Sample orb description -# What will your orb allow users to accomplish? -# Descriptions should be short, simple, and informative. - -# This information will be displayed in the orb registry and is not mandatory. + Orb to isolate workflows for single execution display: - home_url: "https://www.example.com/docs" + home_url: "https://github.com/promiseofcake/circleci-workflow-queue" source_url: "https://github.com/promiseofcake/circleci-workflow-queue" - -# If your orb requires other orbs, you can import them like this. Otherwise remove the "orbs" stanza. -# orbs: -# hello: circleci/hello-build@0.0.5 From 414c34685cfb2910dbb0ea253b7d4f3931ed2df7 Mon Sep 17 00:00:00 2001 From: Lucas Kacher Date: Thu, 1 Dec 2022 15:15:07 -0800 Subject: [PATCH 2/3] fix: update description --- src/@orb.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/@orb.yml b/src/@orb.yml index 5c26f52..0ce432e 100755 --- a/src/@orb.yml +++ b/src/@orb.yml @@ -1,7 +1,10 @@ version: 2.1 description: > - Orb to isolate workflows for single execution + Allows jobs or entire workflows to be queued to ensure they run in serial. + This is ideal for deployments or other activities that must not run concurrently. + May optionaly consider branch-level isolation if unique branches should run concurrently. + This orb requires the project to have an CircleCI API key in order to query build states. display: home_url: "https://github.com/promiseofcake/circleci-workflow-queue" source_url: "https://github.com/promiseofcake/circleci-workflow-queue" From 7c9f6cce3fd600e6331d37756487e7ba3b22fae1 Mon Sep 17 00:00:00 2001 From: Lucas Kacher Date: Thu, 1 Dec 2022 15:18:21 -0800 Subject: [PATCH 3/3] retest this please