Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add auto sync workflow from dev to phase-2 #181

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/sync_pr_dev_to_phase2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Create Sync PR from Dev to Phase-2

on:
schedule:
- cron: "0 0 * * *"

permissions:
pull-requests: write

jobs:
call_sync_branch:
uses: babylonlabs-io/.github/.github/workflows/[email protected]
with:
base_branch: "dev"
target_branch: "phase-2"
reviewers: "jrwbabylonlab,gbarkhatov,jeremy-babylonlabs"
secrets: inherit
2 changes: 1 addition & 1 deletion src/app/components/Staking/Staking.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ import {
} from "@/utils/delegations/signStakingTx";
import { getFeeRateFromMempool } from "@/utils/getFeeRateFromMempool";
import {
getCurrentGlobalParamsVersion,
ParamsWithContext,
getCurrentGlobalParamsVersion,
} from "@/utils/globalParams";
import { isStakingSignReady } from "@/utils/isStakingSignReady";
import { toLocalStorageDelegation } from "@/utils/local_storage/toLocalStorageDelegation";
Expand Down
2 changes: 1 addition & 1 deletion src/app/context/wallet/WalletProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import type { networks } from "bitcoinjs-lib";
import {
type PropsWithChildren,
createContext,
useCallback,
useContext,
useEffect,
useMemo,
useState,
type PropsWithChildren,
} from "react";

import { ConnectModal } from "@/app/components/Modals/ConnectModal";
Expand Down