From a001508490a4bce1e545504c0cd83d8a78cafa57 Mon Sep 17 00:00:00 2001 From: Tanguy Date: Wed, 14 Sep 2022 14:05:43 +0200 Subject: [PATCH] Add codex & waku to autobump (#768) --- .github/workflows/bumper.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bumper.yml b/.github/workflows/bumper.yml index d16c38f..aee8201 100644 --- a/.github/workflows/bumper.yml +++ b/.github/workflows/bumper.yml @@ -7,14 +7,21 @@ on: workflow_dispatch: jobs: - bumpNimbus: + bumpProjects: 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: - - name: Clone NBC + - name: Clone repo uses: actions/checkout@v2 with: - repository: status-im/nimbus-eth2 - ref: unstable + repository: ${{ matrix.target.repo }} + ref: ${{ matrix.target.branch }} path: nbc submodules: true fetch-depth: 0