-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added amount parameter to farming pallet for deposit extrinsic (#3581) (
#3589) This PR introduced additional parameter `amount` to allow user `deposit` to specify any amount of LP tokens. - upgrade runtime - no node update @kkast - [ ] PR title is my best effort to provide summary of changes and has clear text to be part of release notes - [ ] I marked PR by `misc` label if it should not be in release notes - [ ] I have linked Zenhub/Github or any other reference item if one exists - [ ] I was clear on what type of deployment required to release my changes (node, runtime, contract, indexer, on chain operation, frontend, infrastructure) if any in PR title or description - [ ] I waited and did best effort for `Effect gate, automatically merged if passed`(effects-job) to finish with success(green check mark) with my changes - [ ] I have added at least one reviewer in reviewers list - [ ] I tagged(@) or used other form of notification of one person who I think can handle best review of this PR --------- Co-authored-by: Rust Ninja <[email protected]>
- Loading branch information
1 parent
f43f532
commit 8741b94
Showing
8 changed files
with
42 additions
and
15 deletions.
There are no files selected for viewing
6 changes: 1 addition & 5 deletions
6
.github/workflows/build-test-deploy.yml → ...hub/workflows/build-test-deploy-flaky.yml
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
7 changes: 3 additions & 4 deletions
7
.github/workflows/pr.yaml → .github/workflows/pr-workflow-check.yaml
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,22 @@ | ||
name: "pr-workflow-fork" | ||
concurrency: | ||
group: ${{ github.workflow }}-pr-workflow-fork-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
pull_request_target: | ||
|
||
jobs: | ||
pr-workflow-fork: | ||
uses: ./.github/workflows/pr-workflow.yml | ||
with: | ||
github_event_name: ${{ github.event_name }} | ||
github_event_pull_request_head_repo_id : ${{ github.event.pull_request.head.repo.id }} | ||
github_workflow: $ {{ github.workflow }} | ||
github_event_pull_request_head_sha: ${{ github.event.pull_request.head.sha }} | ||
secrets: | ||
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }} | ||
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | ||
PABLO_PROJ_JSON: ${{ secrets.PABLO_PROJ_JSON }} | ||
VERCEL_TOKEN: ${{ secrets.VERCEL_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
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