Skip to content

Commit a3d568c

Browse files
committed
Auto-generated commit
1 parent e272f50 commit a3d568c

10 files changed

+30
-18
lines changed

.gitattributes

+23-6
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,27 @@
4040
*.mov binary
4141

4242
# Override what is considered "vendored" by GitHub's linguist:
43-
/deps/** linguist-vendored=false
44-
/lib/node_modules/** linguist-vendored=false linguist-generated=false
45-
test/fixtures/** linguist-vendored=false
46-
tools/** linguist-vendored=false
43+
/lib/node_modules/** -linguist-vendored -linguist-generated
4744

48-
# Override what is considered "documentation" by GitHub's linguist:
49-
examples/** linguist-documentation=false
45+
# Configure directories which should *not* be included in GitHub language statistics:
46+
/deps/** linguist-vendored
47+
/dist/** linguist-generated
48+
/workshops/** linguist-vendored
49+
50+
benchmark/** linguist-vendored
51+
docs/* linguist-documentation
52+
etc/** linguist-vendored
53+
examples/** linguist-documentation
54+
scripts/** linguist-vendored
55+
test/** linguist-vendored
56+
tools/** linguist-vendored
57+
58+
# Configure files which should *not* be included in GitHub language statistics:
59+
Makefile linguist-vendored
60+
*.mk linguist-vendored
61+
*.jl linguist-vendored
62+
*.py linguist-vendored
63+
*.R linguist-vendored
64+
65+
# Configure files which should be included in GitHub language statistics:
66+
docs/types/*.d.ts -linguist-documentation

.github/.keepalive

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2024-05-01T01:11:34.726Z

.github/workflows/productionize.yml

-4
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,6 @@ jobs:
343343
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
344344
with:
345345
status: ${{ job.status }}
346-
steps: ${{ toJson(steps) }}
347346
channel: '#npm-ci'
348347
if: failure()
349348

@@ -516,7 +515,6 @@ jobs:
516515
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
517516
with:
518517
status: ${{ job.status }}
519-
steps: ${{ toJson(steps) }}
520518
channel: '#npm-ci'
521519
if: failure()
522520

@@ -695,7 +693,6 @@ jobs:
695693
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
696694
with:
697695
status: ${{ job.status }}
698-
steps: ${{ toJson(steps) }}
699696
channel: '#npm-ci'
700697
if: failure()
701698

@@ -893,7 +890,6 @@ jobs:
893890
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
894891
with:
895892
status: ${{ job.status }}
896-
steps: ${{ toJson(steps) }}
897893
channel: '#npm-ci'
898894
if: failure()
899895

.github/workflows/publish.yml

-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ jobs:
218218
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
219219
with:
220220
status: ${{ job.status }}
221-
steps: ${{ toJson(steps) }}
222221
channel: '#npm-ci'
223222
if: failure()
224223

.github/workflows/publish_cli.yml

-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ jobs:
145145
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
146146
with:
147147
status: ${{ job.status }}
148-
steps: ${{ toJson(steps) }}
149148
channel: '#npm-ci'
150149
if: failure()
151150

.github/workflows/test.yml

-1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,5 @@ jobs:
9595
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
9696
with:
9797
status: ${{ job.status }}
98-
steps: ${{ toJson(steps) }}
9998
channel: '#npm-ci'
10099
if: failure()

.github/workflows/test_bundles.yml

-3
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ jobs:
9494
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
9595
with:
9696
status: ${{ job.status }}
97-
steps: ${{ toJson(steps) }}
9897
channel: '#npm-ci'
9998
if: failure()
10099

@@ -139,7 +138,6 @@ jobs:
139138
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
140139
with:
141140
status: ${{ job.status }}
142-
steps: ${{ toJson(steps) }}
143141
channel: '#npm-ci'
144142
if: failure()
145143

@@ -184,6 +182,5 @@ jobs:
184182
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
185183
with:
186184
status: ${{ job.status }}
187-
steps: ${{ toJson(steps) }}
188185
channel: '#npm-ci'
189186
if: failure()

.github/workflows/test_coverage.yml

-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ jobs:
119119
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
120120
with:
121121
status: ${{ job.status }}
122-
steps: ${{ toJson(steps) }}
123122
channel: '#npm-ci'
124123
if: failure()
125124

.github/workflows/test_install.yml

-1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,5 @@ jobs:
8181
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
8282
with:
8383
status: ${{ job.status }}
84-
steps: ${{ toJson(steps) }}
8584
channel: '#npm-ci'
8685
if: failure()

CONTRIBUTORS

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Adarsh Palaskar <[email protected]>
66
Aditya Sapra <[email protected]>
77
AgPriyanshu18 <[email protected]>
8+
Aleksandr <[email protected]>
89
Ali Salesi <[email protected]>
910
Aman Bhansali <[email protected]>
1011
Amit Jimiwal <[email protected]>
@@ -18,6 +19,7 @@ Chinmay Joshi <[email protected]>
1819
Christopher Dambamuromo <[email protected]>
1920
2021
Daniel Killenberger <[email protected]>
22+
Daniel Yu <[email protected]>
2123
Dominik Moritz <[email protected]>
2224
Dorrin Sotoudeh <[email protected]>
2325
EuniceSim142 <[email protected]>
@@ -69,8 +71,11 @@ Seyyed Parsa Neshaei <[email protected]>
6971
Shashank Shekhar Singh <[email protected]>
7072
7173
Shraddheya Shendre <[email protected]>
74+
Shubh Mehta <[email protected]>
7275
Shubham Mishra <[email protected]>
76+
Sivam Das <[email protected]>
7377
Snehil Shah <[email protected]>
78+
Soumajit Chatterjee <[email protected]>
7479
Spandan Barve <[email protected]>
7580
Stephannie Jiménez Gacha <[email protected]>
7681
Suraj kumar <[email protected]>
@@ -83,4 +88,5 @@ Yernar Yergaziyev <[email protected]>
8388
8489
nishant-s7 <[email protected]>
8590
orimiles5 <[email protected]>
91+
8692

0 commit comments

Comments
 (0)