Skip to content

tmp: stick to stable Snapcraft #17

tmp: stick to stable Snapcraft

tmp: stick to stable Snapcraft #17

name: Refresh downstreams
on:
push:
branches:
- core24
jobs:
Refresh:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
ref:
- mir-libs-build-core24
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: "mir-ci-bot@canonical.com"
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 }}