From fa5daaaa686a7d26f99c214244aa95fedf994442 Mon Sep 17 00:00:00 2001 From: Darioush Jalali Date: Wed, 21 Aug 2024 12:58:33 -0700 Subject: [PATCH] gh actions: add skeleton for sync-subnet-evm-branch (#639) --- .github/workflows/sync-subnet-evm-branch.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/sync-subnet-evm-branch.yml diff --git a/.github/workflows/sync-subnet-evm-branch.yml b/.github/workflows/sync-subnet-evm-branch.yml new file mode 100644 index 0000000000..d51be8df89 --- /dev/null +++ b/.github/workflows/sync-subnet-evm-branch.yml @@ -0,0 +1,20 @@ +name: "Sync Subnet EVM Branch" +on: + workflow_dispatch: + inputs: + remoteBranch: + description: "Subnet EVM Branch" + required: true + default: "master" + +jobs: + sync_branch: + name: Sync Subnet EVM Branch + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-go@v5 + with: + go-version: "~1.21.12" + check-latest: true \ No newline at end of file