tics: add flutter (#204) #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |