Skip to content

display: run configure script after populating the config (#188) #27

display: run configure script after populating the config (#188)

display: run configure script after populating the config (#188) #27

name: Refresh downstreams
on:
push:
branches:
- main
jobs:
Refresh:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
ref:
- mir-libs-build
steps:
- name: Check out code
uses: actions/checkout@v4
with:
# so that we know what to cherry-pick from
fetch-depth: 2
- name: Update `${{ matrix.ref }}`
env:
GIT_COMMITTER_NAME: "Mir CI Bot"
GIT_COMMITTER_EMAIL: "[email protected]"
run: |
# bring mir-libs changes in
git fetch origin ${{ matrix.ref }}
git cherry-pick HEAD..origin/${{ matrix.ref }}
git push --force origin HEAD:${{ matrix.ref }}