You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Forked from https://github.com/eddiewebb/circleci-queue and updated to reduce the use-cases, and migrate to the CircleCI V2 API
7
+
Forked from <https://github.com/eddiewebb/circleci-queue> and updated to reduce the use-cases, and migrate to the CircleCI V2 API
9
8
10
9
The purpose of this Orb is to add a concept of a queue to specific branch workflow tasks in CircleCi. The main use-case is to isolate a set of changes to ensure that one set of a thing is running at one time. Think of smoke-tests against a nonproduction environment as a promotion gate.
11
10
12
11
## Configuration Requirements
13
12
14
-
In order to use this orb you will need to export a `CIRCLECI_API_TOKEN` secret added to a context of your choosing. It will authentcation against the CircleCI API to check on workflow status. (see: https://circleci.com/docs/api/v2/index.html#section/Authentication)
13
+
In order to use this orb you will need to export a `CIRCLECI_API_TOKEN` secret added to a context of your choosing. It will authentcation against the CircleCI API to check on workflow status. (see: <https://circleci.com/docs/api/v2/index.html#section/Authentication>)
15
14
16
15
---
17
16
@@ -26,14 +25,15 @@ In order to use this orb you will need to export a `CIRCLECI_API_TOKEN` secret a
26
25
We welcome [issues](https://github.com/promiseofcake/circleci-workflow-queue/issues) to and [pull requests](https://github.com/promiseofcake/circleci-workflow-queue/pulls) against this repository!
27
26
28
27
### How to Publish An Update
28
+
29
29
1. Merge pull requests with desired changes to the main branch.
30
30
- For the best experience, squash-and-merge and use [Conventional Commit Messages](https://conventionalcommits.org/).
31
31
2. Find the current version of the orb.
32
32
- You can run `circleci orb info promiseofcake/workflow-queue | grep "Latest"` to see the current version.
33
33
3. Create a [new Release](https://github.com/promiseofcake/circleci-workflow-queue/releases/new) on GitHub.
34
34
- Click "Choose a tag" and _create_ a new [semantically versioned](http://semver.org/) tag. (ex: v1.0.0)
35
35
- We will have an opportunity to change this before we publish if needed after the next step.
36
-
4.Click _"+ Auto-generate release notes"_.
36
+
4. Click _"+ Auto-generate release notes"_.
37
37
- This will create a summary of all of the merged pull requests since the previous release.
38
38
- If you have used _[Conventional Commit Messages](https://conventionalcommits.org/)_ it will be easy to determine what types of changes were made, allowing you to ensure the correct version tag is being published.
39
39
5. Now ensure the version tag selected is semantically accurate based on the changes included.
0 commit comments