# Define the type of virtual host machine on which to run the job:
30
34
runs-on: ubuntu-latest
35
+
36
+
# Define the sequence of job steps...
31
37
steps:
32
-
- uses: superbrothers/close-pull-request@v3
33
-
with:
34
-
comment: |
35
-
Thank you for submitting a pull request. :raised_hands:
36
-
37
-
We greatly appreciate your willingness to submit a contribution. However, we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://.com/stdlib-js/stdlib).
38
-
39
-
We kindly request that you submit this pull request against the [respective directory](https://.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/array) of the main repository where we’ll review and provide feedback. If this is your first stdlib contribution, be sure to read the [contributing guide](https://.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions.
40
-
41
-
Thank you again, and we look forward to receiving your contribution! :smiley:
42
-
43
-
Best,
44
-
The stdlib team
38
+
39
+
# Close pull request
40
+
- name: 'Close pull request'
41
+
# Pin action to full length commit SHA corresponding to v3.1.2
Thank you for submitting a pull request. :raised_hands:
46
+
47
+
We greatly appreciate your willingness to submit a contribution. However, we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://.com/stdlib-js/stdlib).
48
+
49
+
We kindly request that you submit this pull request against the [respective directory](https://.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/array) of the main repository where we’ll review and provide feedback. If this is your first stdlib contribution, be sure to read the [contributing guide](https://.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions.
50
+
51
+
Thank you again, and we look forward to receiving your contribution! :smiley:
52
+
53
+
Best,
54
+
The stdlib team
Original file line number
Diff line number
Diff line change
@@ -39,13 +39,15 @@ jobs:
39
39
# Define the sequence of job steps...
40
40
steps:
41
41
42
-
# Checkout the repository:
43
-
- name: 'Checkout the repository'
44
-
uses: actions/checkout@v3
42
+
# Checkout repository:
43
+
- name: 'Checkout repository'
44
+
# Pin action to full length commit SHA corresponding to v4.1.0
0 commit comments