Skip to content

Commit b7725fa

Browse files
authored
Merge pull request #25 from ipshipyard/master-upgrade
upgrade@14571899656
2 parents 0e4f9b0 + bc00ab3 commit b7725fa

File tree

5 files changed

+70
-58
lines changed

5 files changed

+70
-58
lines changed

github/ipshipyard.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ repositories:
2222
advanced_security: false
2323
allow_update_branch: false
2424
archived: false
25+
collaborators:
26+
push:
27+
- web3-bot
2528
default_branch: main
2629
has_discussions: false
2730
merge_commit_message: PR_TITLE
@@ -40,6 +43,8 @@ repositories:
4043
collaborators:
4144
admin:
4245
- ns4plabs
46+
push:
47+
- web3-bot
4348
default_branch: master
4449
description: Cloudflare Worker for collecting IPFS gateway stats
4550
has_discussions: false
@@ -57,6 +62,8 @@ repositories:
5762
collaborators:
5863
admin:
5964
- 2color
65+
push:
66+
- web3-bot
6067
default_branch: main
6168
description: "GitHub Action to automate setting DNSLink record "
6269
has_discussions: false
@@ -75,6 +82,9 @@ repositories:
7582
master:
7683
blocks_creations: false
7784
lock_branch: false
85+
collaborators:
86+
push:
87+
- web3-bot
7888
default_branch: master
7989
has_discussions: false
8090
merge_commit_message: PR_TITLE
@@ -91,6 +101,8 @@ repositories:
91101
collaborators:
92102
admin:
93103
- SgtPooki
104+
push:
105+
- web3-bot
94106
default_branch: main
95107
description: A monorepo of React providers, hooks, and components for Helia and js-libp2p
96108
has_discussions: false
@@ -108,6 +120,8 @@ repositories:
108120
collaborators:
109121
admin:
110122
- 2color
123+
push:
124+
- web3-bot
111125
default_branch: main
112126
description: Official IPFS GitHub Action for deploying static sites (or builds) to IPFS nodes/pinning services with CAR files, and addressing site builds with CIDs
113127
has_discussions: false
@@ -137,6 +151,8 @@ repositories:
137151
collaborators:
138152
admin:
139153
- 2color
154+
push:
155+
- web3-bot
140156
default_branch: main
141157
description: inspect and create IPNS records from the browser
142158
has_discussions: false
@@ -158,6 +174,8 @@ repositories:
158174
collaborators:
159175
maintain:
160176
- cwaring
177+
push:
178+
- web3-bot
161179
default_branch: main
162180
description: Interplanetary Shipyard Website
163181
has_discussions: false
@@ -175,6 +193,8 @@ repositories:
175193
collaborators:
176194
admin:
177195
- achingbrain
196+
push:
197+
- web3-bot
178198
default_branch: main
179199
description: Automatically acquire a <peerId>.libp2p.direct TLS certificate
180200
has_discussions: false
@@ -192,6 +212,8 @@ repositories:
192212
collaborators:
193213
admin:
194214
- SgtPooki
215+
push:
216+
- web3-bot
195217
default_branch: main
196218
description: Dev server that utilizes js-libp2p in order to automatically host your application locally and publicly, without any centralized services
197219
has_discussions: false
@@ -209,6 +231,8 @@ repositories:
209231
collaborators:
210232
admin:
211233
- achingbrain
234+
push:
235+
- web3-bot
212236
default_branch: main
213237
description: HTTP on top of libp2p
214238
has_discussions: false
@@ -226,6 +250,8 @@ repositories:
226250
collaborators:
227251
admin:
228252
- achingbrain
253+
push:
254+
- web3-bot
229255
default_branch: master
230256
description: A fork of node-datachannel with WebRTC-Direct patches applied
231257
has_discussions: false
@@ -267,6 +293,9 @@ repositories:
267293
advanced_security: false
268294
allow_update_branch: false
269295
archived: false
296+
collaborators:
297+
push:
298+
- web3-bot
270299
default_branch: main
271300
description: A place for high level roadmaps and issues for Shipyard
272301
has_discussions: false
@@ -287,6 +316,7 @@ repositories:
287316
push:
288317
- 2color
289318
- ns4plabs
319+
- web3-bot
290320
default_branch: main
291321
description: Discussion and documentation concerning the operation of the Public Goods for IPFS and Libp2p.
292322
has_discussions: false
@@ -313,6 +343,7 @@ repositories:
313343
- guillaumemichel
314344
- hsanjuan
315345
- SgtPooki
346+
- web3-bot
316347
triage:
317348
- dennis-tra
318349
default_branch: master

scripts/package-lock.json

Lines changed: 27 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@octokit/types": "^14.0.0",
3838
"@types/deep-diff": "^1.0.5",
3939
"@types/node": "^22.14.1",
40-
"eslint": "^9.24.0",
40+
"eslint": "^9.25.0",
4141
"eslint-config-prettier": "^10.1.2",
4242
"eslint-plugin-prettier": "^5.2.6",
4343
"prettier": "^3.5.3",

scripts/src/actions/shared/describe-access-changes.ts

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,13 @@ export async function describeAccessChanges(
177177
)
178178
}
179179
if (change.rhs.repositories) {
180-
for (const [repository, {permission}] of Object.entries(
181-
change.rhs.repositories.repositories
182-
)) {
180+
const repositories = change.rhs.repositories as unknown as Record<
181+
string,
182+
{permission: string}
183+
>
184+
for (const [repository, config] of Object.entries(repositories)) {
183185
lines.push(
184-
` - will gain ${permission} permission to ${repository}`
186+
` - will gain ${config} permission to ${repository}`
185187
)
186188
}
187189
}
@@ -197,8 +199,12 @@ export async function describeAccessChanges(
197199
lines.push(` - will leave the organization`)
198200
}
199201
if (change.lhs.repositories) {
202+
const repositories = change.lhs.repositories as unknown as Record<
203+
string,
204+
{permission: string}
205+
>
200206
for (const [repository, {permission}] of Object.entries(
201-
change.lhs.repositories.repositories
207+
repositories
202208
)) {
203209
lines.push(
204210
` - will lose ${permission} permission to ${repository}`

scripts/src/resources/team-member.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export class TeamMember extends String implements Resource {
6161
r.type === Team.StateType &&
6262
r.index === teamIndex
6363
)
64-
console.log(teamIndex, team)
6564
members.push(
6665
new TeamMember(
6766
team !== undefined && team.type === Team.StateType

0 commit comments

Comments
 (0)