File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed
Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 11version : 2
22updates :
33 - package-ecosystem : " cargo"
4- directories : ["/enclaves/**"]
4+ directories : ["/enclaves/**/* "]
55 schedule :
66 interval : " weekly"
77 open-pull-requests-limit : 3
Original file line number Diff line number Diff line change 1+ name : Release
2+ on :
3+ workflow_dispatch :
4+ inputs :
5+ enclave :
6+ type : string
7+ required : true
8+ description : ' Enclave to be released'
9+ network :
10+ type : string
11+ required : true
12+ default : mainnet
13+ options :
14+ - testnet
15+ - mainnet
16+ description : ' The network on which the enclave runs.'
17+ tag :
18+ type : string
19+ required : true
20+ description : ' version tag'
21+
22+ jobs :
23+ print :
24+ runs-on : ubuntu-24.04
25+ steps :
26+ - name : ' Print the input values'
27+ run : |
28+ echo ${{ github.event.inputs.enclave }}
29+ echo ${{ github.event.inputs.network }}
30+ echo ${{ github.event.inputs.tag }}
You can’t perform that action at this time.
0 commit comments