Skip to content

Commit 78b93f8

Browse files
Merge remote-tracking branch 'upstream/master' into codesandbox-dev
2 parents c9ea44b + beca13e commit 78b93f8

789 files changed

Lines changed: 104601 additions & 120703 deletions

File tree

Some content is hidden

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

.changeset/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ with multi-package repos, or single-package repos to help you version and publis
55
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
66

77
We have a quick list of common questions to get you started engaging with this project in
8-
[our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md)
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
11
{
2-
"$schema": "https://unpkg.com/@changesets/config@1.4.0/schema.json",
3-
"changelog": [
4-
"@changesets/cli/changelog",
5-
{ "repo": "0xsequence/sequence.js" }
6-
],
2+
"$schema": "https://unpkg.com/@changesets/config@3.0.5/schema.json",
3+
"changelog": "@changesets/cli/changelog",
74
"commit": false,
8-
"linked": [
9-
[
10-
"@0xsequence/*"
11-
]
12-
],
13-
"access": "public",
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
148
"baseBranch": "master",
15-
"ignore": [],
16-
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
17-
"updateInternalDependents": "always"
18-
}
9+
"updateInternalDependencies": "patch",
10+
"ignore": ["@0xsequence/wallet-primitives-cli", "docs", "web"]
1911
}

.eslintignore

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

.eslintrc.js

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

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @0xsequence/disable-codeowners-notifications @0xsequence/core

.github/actions/install-dependencies/action.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@ runs:
44
using: 'composite'
55

66
steps:
7+
- name: Setup Node
8+
uses: actions/setup-node@v4
9+
with:
10+
node-version: 20
11+
712
- name: Setup PNPM
813
uses: pnpm/action-setup@v3
914
with:
10-
version: 9
15+
version: 10
1116
run_install: false
1217

1318
- name: Get pnpm store directory
@@ -17,7 +22,7 @@ runs:
1722
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
1823
1924
- name: Setup pnpm cache
20-
uses: actions/cache@v3
25+
uses: actions/cache@v4
2126
with:
2227
path: |
2328
${{ steps.pnpm-cache.outputs.STORE_PATH }}
@@ -28,11 +33,6 @@ runs:
2833
restore-keys: |
2934
${{ runner.os }}-pnpm-store-
3035
31-
- name: Setup Node
32-
uses: actions/setup-node@v3
33-
with:
34-
node-version: 20
35-
3636
- name: Install dependencies
3737
shell: bash
3838
run: pnpm install --frozen-lockfile
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: pnpm-format-label
2+
3+
on:
4+
pull_request:
5+
types: [labeled]
6+
7+
jobs:
8+
proto:
9+
if: ${{ github.event.label.name == 'pnpm format' }}
10+
uses: ./.github/workflows/pnpm-format.yml
11+
secrets: inherit
12+
13+
rm:
14+
if: ${{ github.event.label.name == 'pnpm format' }}
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Remove the label
18+
run: |
19+
LABEL=$(echo "${{ github.event.label.name }}" | sed 's/ /%20/g')
20+
curl -X DELETE \
21+
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
22+
-H "Accept: application/vnd.github.v3+json" \
23+
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels/$LABEL

.github/workflows/pnpm-format.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: pnpm format
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:
7+
run:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
with:
13+
ref: ${{ github.head_ref }}
14+
fetch-depth: 20
15+
16+
- uses: ./.github/actions/install-dependencies
17+
18+
- run: pnpm format
19+
20+
- name: Commit back
21+
uses: 0xsequence/actions/git-commit@v0.0.4
22+
env:
23+
API_TOKEN_GITHUB: ${{ secrets.GH_TOKEN_GIT_COMMIT }}
24+
with:
25+
files: './'
26+
branch: ${{ github.head_ref }}
27+
commit_message: '[AUTOMATED] pnpm format'

0 commit comments

Comments
 (0)