Skip to content

Commit 3c423b9

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/onekey-keyring
2 parents e34af7d + 3398691 commit 3c423b9

164 files changed

Lines changed: 12856 additions & 1036 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.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Check Changelog
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, labeled, unlabeled]
6+
7+
jobs:
8+
check-changelog:
9+
name: Check changelog
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Check changelog
13+
uses: MetaMask/github-tools/.github/actions/check-changelog@v1
14+
with:
15+
base-branch: ${{ github.event.pull_request.base.ref }}
16+
head-ref: ${{ github.head_ref }}
17+
labels: ${{ toJSON(github.event.pull_request.labels) }}
18+
pr-number: ${{ github.event.pull_request.number }}
19+
repo: ${{ github.repository }}

.github/workflows/validate-pr-title.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
style
4040
test
4141
scopes: |
42+
deps
43+
deps-dev
4244
keyring-api
4345
keyring-eth-hd
4446
keyring-eth-ledger-bridge

.syncpackrc

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,35 @@
1212
"semverGroups": [
1313
{
1414
"label": "use tilde range for some dependencies",
15-
"dependencies": ["eslint-plugin-import", "typescript"],
15+
"dependencies": [
16+
"eslint-plugin-import",
17+
"typescript"
18+
],
1619
"range": "~"
1720
},
1821
{
1922
"label": "use exact versions for some dependencies",
20-
"dependencies": ["yarn"],
23+
"dependencies": [
24+
"yarn"
25+
],
2126
"range": ""
2227
},
2328
{
2429
"label": "use caret ranges everywhere else",
25-
"dependencies": ["**"],
30+
"dependencies": [
31+
"**"
32+
],
2633
"range": "^"
2734
}
2835
],
2936
"versionGroups": [
3037
{
3138
"label": "use workspace version of packages in the monorepo",
32-
"dependencyTypes": ["!local"],
39+
"dependencyTypes": [
40+
"!local"
41+
],
3342
"dependencies": [
43+
"@metamask/account-**",
3444
"@metamask/keyring-**",
3545
"@metamask/eth-**-keyring"
3646
],

0 commit comments

Comments
 (0)