forked from ethereum/execution-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 1022 Bytes
/
Copy patheip-rebase.yaml
File metadata and controls
39 lines (33 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: EIP Rebase Onto Fork Branch
on:
workflow_dispatch:
inputs:
fork:
description: 'Fork name (e.g., amsterdam)'
required: true
type: string
eip_number:
description: 'EIP number'
required: true
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.event.inputs.fork }}-${{ github.event.inputs.eip_number }}
cancel-in-progress: false
permissions:
contents: write
jobs:
rebase-eip:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup uv
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1
- name: Rebase EIP branch onto fork
uses: ./.github/actions/rebase-eip-branch
with:
fork: ${{ github.event.inputs.fork }}
eip_number: ${{ github.event.inputs.eip_number }}