8000 Merge branch 'master' into split-tests-info · stackbuilders/circleci-docs@513e860 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit 513e860

Browse files
Merge branch 'master' into split-tests-info
2 parents b70b364 + b6fea22 commit 513e860

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

jekyll/_cci2/creating-orbs.md

Lines changed: 1 addition & 1 deletion
10000
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Examples of orb version declarations and their meaning:
7070

7171
### Using Development Versions
7272

73-
While all production orbs must be published securely by organization administrators, development orbs provide non-administrator members of the team with a way to publish orbs. Unlike production orbs, dev orbs are also mutable, so they are ideal for rapid iteration of an idea.
73+
While all production orbs must be published securely by organization administrators, development orbs provide non-administrator members of the team with a way to publish orbs. Unlike production orbs, development orbs are also mutable, so they are ideal for rapid iteration of an idea.
7474

7575
A development version must be referenced by its complete, fully-qualified name, such as: ```mynamespace/myorb@dev:mybranch.```; whereas production orbs allow wildcard semantic version references. Note that there are no shorthand conveniences for development versions.
7676

jekyll/_cci2/notifications.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ published: true
88
---
99

1010
CircleCI has integrated chat notifications, automated email notifications, and
11-
web notifications. Notifications are delivered on the success or failure of a
12-
[workflow]({{ site.baseurl }}/2.0/workflows/). Consider the minimal CircleCI config below:
11+
web notifications. For Slack and Email, notifications are delivered on the success or failure of a
12+
[workflow]({{ site.baseurl }}/2.0/workflows/). Otherwise, notifications are
13+
delivered for each job for all other notification platforms. Consider the minimal CircleCI config below:
14+
1315

1416
```yaml
1517
version: 2
@@ -28,9 +30,10 @@ jobs:
2830
- run: <command>
2931
workflows:
3032
version: 2
31-
build_and_test: # < A notification will be visible for this workflow
33+
build_and_test: # < Slack and Email notifications will be delivered for workflows
3234
jobs:
33-
- build
35+
# All other notification integrations (HipChat, IRC, etc) will receive notification for each job.
36+
- build
3437
- test
3538
```
3639

0 commit comments

Comments
 (0)
0