Skip to content

Commit 98e53b1

Browse files
committed
Fix: remove redundant step.
1 parent d9600ce commit 98e53b1

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

jekyll/_cci2/jira-plugin.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,21 @@ in Jira Cloud. To do this, you will need to:
3333
1. {% include snippets/enable-pipelines.md %}
3434
1. To get an API token for build information retrieval, go to [User Settings > Tokens](https://app.circleci.com/settings/user/tokens) and create a token. Copy the token. (*Note*: older versions of the JIRA orb may require you to retrieve a _Project API Token_, which is accessible from **Project Settings > API Permissions**)
3535
1. To give the integration access to the key, go to **Project Settings -> Environment Variables** and add a variable named _CIRCLE_TOKEN_ with the value being the token you just made.
36-
1. Add the orb stanza, invoking the Jira orb (see example below).
37-
1. Use the Jira orb in a step.
36+
1. Add the Jira orb to your configuration and invoke it (see example below).
3837

3938
The example config below provides a bare `config.yml` illustrating the use of the Jira Orb.
4039

4140

4241
```yaml
4342
version: 2.1
44-
orbs:
45-
jira: circleci/jira@1.0.5
43+
orbs: # adds orbs to your configuration
44+
jira: circleci/jira@1.0.5 # invokes the Jira orb, making it's commands accessible
4645
workflows:
4746
build:
4847
jobs:
4948
- build:
5049
post-steps:
51-
- jira/notify
50+
- jira/notify # Runs the Jira's "notify" commands after a build has finished it's steps.
5251
jobs:
5352
build:
5453
docker:

0 commit comments

Comments
 (0)