Add codex & waku to autobump (#768)
This commit is contained in:
parent
4d8b50d24c
commit
a001508490
|
@ -7,14 +7,21 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
bumpNimbus:
|
bumpProjects:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
target: [
|
||||||
|
{ repo: status-im/nimbus-eth2, branch: unstable },
|
||||||
|
{ repo: status-im/nwaku, branch: master },
|
||||||
|
{ repo: status-im/nim-codex, branch: main }
|
||||||
|
]
|
||||||
steps:
|
steps:
|
||||||
- name: Clone NBC
|
- name: Clone repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: status-im/nimbus-eth2
|
repository: ${{ matrix.target.repo }}
|
||||||
ref: unstable
|
ref: ${{ matrix.target.branch }}
|
||||||
path: nbc
|
path: nbc
|
||||||
submodules: true
|
submodules: true
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
Loading…
Reference in New Issue