Skip to content

Commit 299d3b0

Browse files
authored
Merge branch 'main' into yash/compute-ref-deployment-info
2 parents f1a5555 + 6911102 commit 299d3b0

File tree

2,351 files changed

+71068
-779186
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,351 files changed

+71068
-779186
lines changed

.changeset/config.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@
1010
"access": "public",
1111
"baseBranch": "main",
1212
"updateInternalDependencies": "patch",
13-
"ignore": ["playground-web", "thirdweb-dashboard", "wallet-ui", "portal"],
13+
"ignore": [
14+
"playground-web",
15+
"thirdweb-dashboard",
16+
"wallet-ui",
17+
"portal",
18+
"thirdweb-login"
19+
],
1420
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
1521
"updateInternalDependents": "always",
1622
"onlyUpdatePeerDependentsWhenOutOfRange": true

.changeset/four-ducks-try.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/shy-bats-eat.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tricky-pears-check.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ packages/eslint-config-thirdweb/ @thirdweb-dev/core-platform @edwardysun
1212
packages/tw-tsconfig/ @thirdweb-dev/core-platform @edwardysun
1313

1414
# apps
15-
apps/ @thirdweb-dev/developer-tools @thirdweb-dev/core-platform @jakubkrehel
15+
apps/ @thirdweb-dev/developer-tools @thirdweb-dev/core-platform
1616

1717
# .github folder + .changeset + turbo config is owned by jonas for now
1818
scripts/ @jnsdls @joaquim-verges

.github/contributing.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ To get started, read the [How this repo works](#how-this-repo-works) section bel
66

77
From there, you can take a look at our [Good First Issues](https://github.com/thirdweb-dev/js/labels/good%20first%20issue) board and find an issue that interests you!
88

9-
If you have any questions about the issue, feel free to ask on our [Discord server](https://discord.gg/thirdweb) in the `#contributors` channel; where you'll be able to get help from our team and other contributors.
10-
119
<br />
1210

1311
## How this repo works
@@ -85,7 +83,10 @@ If your test depends on a downstream network call, you must mock the call using
8583
import { setupServer } from "msw/node";
8684
import { downloadMock, uploadMock } from "../../../test/src/mocks/storage.js";
8785

88-
const server = setupServer(uploadMock("HASH"), downloadMock({ name: "Test NFT" }));
86+
const server = setupServer(
87+
uploadMock("HASH"),
88+
downloadMock({ name: "Test NFT" })
89+
);
8990

9091
beforeAll(() => server.listen());
9192
afterEach(() => server.resetHandlers());

.github/pull_request_template.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
1-
## Problem solved
1+
<!--
22
3-
Short description of the bug fixed or feature added
3+
## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes"
44
5+
If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000):
6+
7+
## Notes for the reviewer
8+
9+
Anything important to call out? Be sure to also clarify these in your comments.
10+
11+
## How to test
12+
13+
Unit tests, playground, etc.
14+
15+
-->

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020

2121
jobs:
2222
optimize_ci:
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-latest-8
2424
outputs:
2525
skip: ${{ steps.check_skip.outputs.skip }}
2626
steps:
@@ -34,7 +34,7 @@ jobs:
3434
build:
3535
needs: optimize_ci
3636
if: needs.optimize_ci.outputs.skip == 'false'
37-
runs-on: ubuntu-latest
37+
runs-on: ubuntu-latest-8
3838
name: Build Packages
3939
steps:
4040
- name: Check out the code
@@ -51,7 +51,7 @@ jobs:
5151
if: needs.optimize_ci.outputs.skip == 'false'
5252
timeout-minutes: 15
5353
name: Lint Packages
54-
runs-on: ubuntu-latest
54+
runs-on: ubuntu-latest-8
5555
steps:
5656
- name: Check out the code
5757
uses: actions/checkout@v4
@@ -71,7 +71,7 @@ jobs:
7171
if: needs.optimize_ci.outputs.skip == 'false'
7272
timeout-minutes: 15
7373
name: Unit Tests
74-
runs-on: ubuntu-latest
74+
runs-on: ubuntu-latest-8
7575
steps:
7676
- name: Check out the code
7777
uses: actions/checkout@v4
@@ -99,7 +99,7 @@ jobs:
9999
if: needs.optimize_ci.outputs.skip == 'false'
100100
timeout-minutes: 15
101101
name: E2E Tests
102-
runs-on: ubuntu-latest
102+
runs-on: ubuntu-latest-8
103103
strategy:
104104
matrix:
105105
package_manager: [npm, yarn, pnpm, bun]
@@ -169,7 +169,7 @@ jobs:
169169
if: github.event_name == 'pull_request' && needs.optimize_ci.outputs.skip == 'false'
170170
timeout-minutes: 15
171171
name: "Size"
172-
runs-on: ubuntu-latest
172+
runs-on: ubuntu-latest-8
173173
steps:
174174
- name: Check out the code
175175
uses: actions/checkout@v4

.github/workflows/auto-assign.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Auto Author Assign
22

33
on:
44
pull_request:
5-
types: [opened, reopened]
5+
types: [opened, reopened, ready_for_review, draft]
66

77
permissions:
88
pull-requests: write
@@ -13,6 +13,7 @@ jobs:
1313
if: |
1414
github.event.pull_request.author_association == 'MEMBER' ||
1515
github.event.pull_request.author_association == 'OWNER' ||
16-
github.event.pull_request.author_association == 'COLLABORATOR'
16+
github.event.pull_request.author_association == 'COLLABORATOR' ||
17+
github.event.pull_request.author_association == 'CONTRIBUTOR'
1718
steps:
1819
- uses: toshimaru/[email protected]

.github/workflows/issue.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)