Skip to content

Commit 06a7eb4

Browse files
committed
Auto-generated commit
1 parent 90c14e5 commit 06a7eb4

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/bundle.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,13 @@ jobs:
9090
user_email: 'noreply@stdlib.io'
9191
commit_message: 'Auto-generated commit'
9292
enable_jekyll: true
93+
- name: Send status to Slack channel in case of failure
94+
uses: act10ns/slack@v1
95+
with:
96+
status: ${{ job.status }}
97+
steps: ${{ toJson(steps) }}
98+
channel: '#npm-ci'
99+
if: failure()
93100
umd:
94101
runs-on: ubuntu-latest
95102
steps:
@@ -152,6 +159,13 @@ jobs:
152159
user_email: 'noreply@stdlib.io'
153160
commit_message: 'Auto-generated commit'
154161
enable_jekyll: true
162+
- name: Send status to Slack channel in case of failure
163+
uses: act10ns/slack@v1
164+
with:
165+
status: ${{ job.status }}
166+
steps: ${{ toJson(steps) }}
167+
channel: '#npm-ci'
168+
if: failure()
155169
esm:
156170
runs-on: ubuntu-latest
157171
steps:
@@ -220,3 +234,10 @@ jobs:
220234
user_email: 'noreply@stdlib.io'
221235
commit_message: 'Auto-generated commit'
222236
enable_jekyll: true
237+
- name: Send status to Slack channel in case of failure
238+
uses: act10ns/slack@v1
239+
with:
240+
status: ${{ job.status }}
241+
steps: ${{ toJson(steps) }}
242+
channel: '#npm-ci'
243+
if: failure()

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Alternatively,
4848
var incrspace = require( '@stdlib/array-base-incrspace' );
4949
```
5050

51-
#### incrspace( start, stop\[, increment] )
51+
#### incrspace( start, stop, increment )
5252

5353
Generates a linearly spaced numeric `array` according to a provided `increment`.
5454

0 commit comments

Comments
 (0)