nim-libp2p/.github/workflows/bumper.yml

46 lines
1.3 KiB
YAML
Raw Normal View History

name: Bumper
on:
push:
branches:
- unstable
- bumper
workflow_dispatch:
jobs:
2022-09-14 12:05:43 +00:00
bumpProjects:
runs-on: ubuntu-latest
2022-09-14 12:05:43 +00:00
strategy:
2023-05-22 15:37:42 +00:00
fail-fast: false
2022-09-14 12:05:43 +00:00
matrix:
target: [
{ repo: status-im/nimbus-eth2, branch: unstable },
2023-05-22 15:37:42 +00:00
{ repo: waku-org/nwaku, branch: master },
{ repo: codex-storage/nim-codex, branch: master }
2022-09-14 12:05:43 +00:00
]
steps:
2022-09-14 12:05:43 +00:00
- name: Clone repo
uses: actions/checkout@v2
with:
2022-09-14 12:05:43 +00:00
repository: ${{ matrix.target.repo }}
ref: ${{ matrix.target.branch }}
path: nbc
fetch-depth: 0
token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
- name: Checkout this ref
run: |
cd nbc
git submodule update --init vendor/nim-libp2p
cd vendor/nim-libp2p
git checkout $GITHUB_SHA
- name: Commit this bump
run: |
cd nbc
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git config --global user.name = "${{ github.actor }}"
git commit --allow-empty -a -m "auto-bump nim-libp2p"
git branch -D nim-libp2p-auto-bump-${GITHUB_REF##*/} || true
git switch -c nim-libp2p-auto-bump-${GITHUB_REF##*/}
git push -f origin nim-libp2p-auto-bump-${GITHUB_REF##*/}