File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 90
90
user_email : ' noreply@stdlib.io'
91
91
commit_message : ' Auto-generated commit'
92
92
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()
93
100
umd :
94
101
runs-on : ubuntu-latest
95
102
steps :
@@ -152,6 +159,13 @@ jobs:
152
159
user_email : ' noreply@stdlib.io'
153
160
commit_message : ' Auto-generated commit'
154
161
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()
155
169
esm :
156
170
runs-on : ubuntu-latest
157
171
steps :
@@ -220,3 +234,10 @@ jobs:
220
234
user_email : ' noreply@stdlib.io'
221
235
commit_message : ' Auto-generated commit'
222
236
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()
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ Alternatively,
48
48
var incrspace = require ( ' @stdlib/array-base-incrspace' );
49
49
```
50
50
51
- #### incrspace( start, stop\[ , increment] )
51
+ #### incrspace( start, stop, increment )
52
52
53
53
Generates a linearly spaced numeric ` array ` according to a provided ` increment ` .
54
54
You can’t perform that action at this time.
0 commit comments