File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 50
50
env :
51
51
SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
52
52
53
- # Run workflow job if `publish` workflow run is successful or when the workflow is manually run :
54
- if : ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
53
+ # Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule :
54
+ if : ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
55
55
56
56
# Define the sequence of job steps...
57
57
steps :
Original file line number Diff line number Diff line change 47
47
env :
48
48
SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
49
49
50
- # Run workflow job if `publish` workflow run is successful or when the workflow is manually run :
51
- if : ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
50
+ # Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule :
51
+ if : ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
52
52
53
53
# Define the job's steps:
54
54
steps :
Original file line number Diff line number Diff line change 4
4
5
5
<section class="release" id="unreleased">
6
6
7
- ## Unreleased (2024-12-20 )
7
+ ## Unreleased (2024-12-22 )
8
8
9
9
<section class="packages">
10
10
@@ -869,6 +869,7 @@ A total of 12 people contributed to this release. Thank you to the following con
869
869
870
870
<details>
871
871
872
+ - [`5b71452`](https://github.com/stdlib-js/stdlib/commit/5b71452bd40811341a2e4eaab018c3cc17c5feac) - **docs:** update related packages sections [(#4135)](https://github.com/stdlib-js/stdlib/pull/4135) _(by stdlib-bot, Athan Reines)_
872
873
- [`c322b66`](https://github.com/stdlib-js/stdlib/commit/c322b6647751b73a9d0fe12bf5665e8e2243d4ca) - **docs:** update related packages sections [(#4070)](https://github.com/stdlib-js/stdlib/pull/4070) _(by stdlib-bot, Philipp Burckhardt)_
873
874
- [`f317033`](https://github.com/stdlib-js/stdlib/commit/f3170337071651a2997d15ac194fc767570f2f75) - **docs:** update related packages sections [(#4040)](https://github.com/stdlib-js/stdlib/pull/4040) _(by stdlib-bot)_
874
875
- [`a1b543a`](https://github.com/stdlib-js/stdlib/commit/a1b543a2a1bdf4d1fb9438bd4a13cb971af62063) - **docs:** update related packages sections [(#4009)](https://github.com/stdlib-js/stdlib/pull/4009) _(by stdlib-bot, Philipp Burckhardt)_
Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ console.log( y );
130
130
131
131
## See Also
132
132
133
+ - <span class="package-name">[`@stdlib/array/put`][@stdlib/array/put]</span><span class="delimiter">: </span><span class="description">replace specified elements of an array with provided values.</span>
133
134
- <span class="package-name">[`@stdlib/array/slice`][@stdlib/array/slice]</span><span class="delimiter">: </span><span class="description">return a shallow copy of a portion of an array.</span>
134
135
135
136
</section>
@@ -146,6 +147,8 @@ console.log( y );
146
147
147
148
<!-- <related-links> -->
148
149
150
+ [@stdlib/array/put]: https:// github.com/stdlib-js/array/tree/main/put
151
+
149
152
[@stdlib/array/slice]: https:// github.com/stdlib-js/array/tree/main/slice
150
153
151
154
<!-- </related-links> -->
You can’t perform that action at this time.
0 commit comments