Skip to content

Commit 9fe8626

Browse files
committed
Add reusable in release/3.4.5 branch
1 parent 1958f97 commit 9fe8626

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Reusable test
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
application:
7+
required: false
8+
type: string
9+
default: 'erigon'
10+
version:
11+
required: false
12+
default: '3.0.0'
13+
type: string
14+
15+
jobs:
16+
build:
17+
runs-on: ubuntu-latest
18+
timeout-minutes: 30
19+
20+
steps:
21+
- name: Debug output
22+
run: |
23+
echo "DEBUG -- this is release/3.4.5 branch"
24+
export

0 commit comments

Comments
 (0)