-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
836 changed files
with
126,372 additions
and
1,159,673 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,43 @@ | ||
<!-- | ||
Thank you for your contribution! 👍 | ||
Please make sure to read CONTRIBUTING.md if you have not already. | ||
Disclaimer: Pull Requests that do not comply with the rules will be arbitrarily closed. | ||
Please make sure to read CONTRIBUTING.md if you have not already. Pull Requests that do not comply with the rules will be arbitrarily closed. | ||
--> | ||
|
||
### 📝 Description | ||
|
||
_Replace this text by a clear and concise description of what this pull request is about and why it is needed._ | ||
_Replace this text by a clear and concise description of what this pull request is about and why it is needed. Be sure to explain the problem you're addressing and the solution you're proposing._ | ||
_For libraries, you can add a code sample of how to use it._ | ||
_For bugfixes, you can explain the previous behavior and how it was fixed._ | ||
_In case of visual features, please attach screenshots or video recordings to demonstrate the changes._ | ||
|
||
<!-- | ||
| Before | After | | ||
| ------------- | ------------- | | ||
| | | | ||
--> | ||
|
||
### ❓ Context | ||
|
||
- **Impacted projects**: `` <!-- Add the list of end user projects impacted by the change inside of the ` `, like so `LLM, LLD`. --> | ||
- **Linked resource(s)**: [] <!-- Attach any ticket number if relevant inside the brackets, like so [LIVE-0000]. (JIRA / Github issue number) --> | ||
- **JIRA or GitHub link**: <!-- Attach the relevant ticket number if applicable. (e.g., JIRA-123 or #123) --> | ||
|
||
### ✅ Checklist | ||
|
||
- [ ] **Test coverage** <!-- Are your changes covered by tests? Features must be tested, bugfixes must include a test that would have detected the issue. --> | ||
- [ ] **Atomic delivery** <!-- Is this pull request standalone? In order words, does it depend on nothing else? Please explain if not checked. --> | ||
- [ ] **No breaking changes** <!-- If there are breaking changes, please explain why. --> | ||
Pull Requests must pass the CI and be code reviewed. Set as Draft if the PR is not ready. | ||
|
||
### 📸 Demo | ||
|
||
<!-- | ||
For visual features, please attach screenshots or video recordings to demonstrate the changes. | ||
For libraries, you can add a code sample. | ||
For bugfixes, you can drop this section. | ||
--> | ||
- [ ] `npx changeset` was attached. | ||
- [ ] **Covered by automatic tests.** <!-- if not, please explain. (Feature must be tested / Bugfix must bring non-regression) --> | ||
- [ ] **Impact of the changes:** <!-- Please take some time to list the impact & what specific areas Quality Assurance (QA) should focus on --> | ||
- | ||
|
||
### 🚀 Expectations to reach | ||
--- | ||
|
||
_Please make sure you follow these [**Important Steps**](https://github.com/LedgerHQ/ledger-live/blob/develop/CONTRIBUTING.md#important-steps)._ | ||
### 🧐 Checklist for the PR Reviewers | ||
|
||
_Pull Requests must pass the CI and be internally validated in order to be merged._ | ||
<!-- Please do not edit this if you are the PR author --> | ||
|
||
<!-- If any of the expectations are not met please explain the reason in detail. --> | ||
- [ ] **The code aligns with the requirements** described in the linked JIRA or GitHub issue. | ||
- [ ] **The PR description clearly documents the changes** made and explains any technical trade-offs or design decisions. | ||
- [ ] **There are no undocumented trade-offs**, technical debt, or maintainability issues. | ||
- [ ] **The PR has been tested** thoroughly, and any potential edge cases have been considered and handled. | ||
- [ ] **Any new dependencies** have been justified and documented. | ||
- [ ] **Performance** considerations have been taken into account. (changes have been profiled or benchmarked if necessary) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: "[Import CAL Tokens test Release] Create Branch" | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: Use workflow from branch | ||
required: false | ||
|
||
jobs: | ||
create-test-release: | ||
name: Create test Release | ||
runs-on: ubuntu-latest | ||
env: | ||
NODE_OPTIONS: "--max-old-space-size=7168" | ||
RELEASE_BRANCH: "import-cal-token-test-release" | ||
steps: | ||
- name: generate token | ||
id: generate-token | ||
uses: tibdex/github-app-token@v1 | ||
with: | ||
app_id: ${{ secrets.GH_BOT_APP_ID }} | ||
private_key: ${{ secrets.GH_BOT_PRIVATE_KEY }} | ||
- uses: actions/checkout@v3 | ||
if: ${{ inputs.ref != null }} | ||
with: | ||
ref: ${{ inputs.ref }} | ||
fetch-depth: 0 | ||
token: ${{ steps.generate-token.outputs.token }} | ||
- uses: actions/checkout@v3 | ||
if: ${{ !inputs.ref }} | ||
with: | ||
ref: develop | ||
token: ${{ steps.generate-token.outputs.token }} | ||
- name: set git user | ||
run: | | ||
git config user.email "105061298+live-github-bot[bot]@users.noreply.github.com" | ||
git config user.name "live-github-bot[bot]" | ||
- name: create test release release branch | ||
run: | | ||
git checkout -b $RELEASE_BRANCH | ||
- name: Setup the toolchain | ||
uses: ./tools/actions/composites/setup-toolchain | ||
- name: install dependencies | ||
run: pnpm i -F "ledger-live" | ||
- name: import CAL tokens | ||
run: pnpm import:cal-tokens | ||
- name: commit new tokens | ||
run: | | ||
git add . | ||
git commit -m 'chore(prerelease) update cryptoassets' | ||
- name: update cryptoassets.md | ||
run: | | ||
pnpm generate:cryptoassets-md | ||
git add . | ||
git commit -m 'update cryptoassets.md' | ||
- name: update sortByMarketcap snapshot | ||
run: | | ||
pnpm common jest --runTestsByPath src/currencies/sortByMarketcap.test.ts -u | ||
git add . | ||
git commit -m 'update sortByMarketcap snapshot' | ||
- name: enter prerelease mode | ||
run: pnpm changeset pre enter next | ||
- name: commit | ||
run: | | ||
git add . | ||
git commit -m "chore(prerelease): :rocket: entering prerelease mode" | ||
- name: Get date | ||
id: date | ||
run: | | ||
echo "date=$(date +%F)" >> $GITHUB_OUTPUT | ||
- name: push | ||
run: | | ||
git push origin release | ||
gh pr create --title ":rocket: Release ${{ steps.date.outputs.date }}" -F .github/templates/release.md --base main --head release | ||
env: | ||
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
node = "18.18.0" | ||
npm = "9.8.1" | ||
pnpm = "8.8.0" | ||
pnpm = "8.10.2" |
Oops, something went wrong.
468bbdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
ledger-live-docs – ./docs
ledger-live-docs.vercel.app
ledger-live-docs-git-main-ledgerhq.vercel.app
ledger-live-docs-ledgerhq.vercel.app
468bbdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
react-ui-storybook – ./
react-ui-storybook-git-main-ledgerhq.vercel.app
react-ui-storybook-ledgerhq.vercel.app
react-ui-storybook.vercel.app
468bbdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
native-ui-storybook – ./
native-ui-storybook-git-main-ledgerhq.vercel.app
native-ui-storybook.vercel.app
native-ui-storybook-ledgerhq.vercel.app