Pull from Gerrit #83
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: "Pull from Gerrit" | |
on: | |
# allow triggering manually | |
workflow_dispatch: | |
schedule: | |
- cron: "0 */23 * * *" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pull: | |
runs-on: navi32 | |
steps: | |
- name: Pull from Gerrit to gerrit-amd-staging branch | |
run: | | |
cd ${{github.workspace}} | |
git config --global --add safe.directory ${{github.workspace}} | |
git remote add gerrit ssh://[email protected]:29418/compute/ec/rocprofiler | |
git fetch --all | |
git checkout gerrit/amd-staging | |
git checkout -b gerrit-amd-staging | |
git push origin gerrit-amd-staging | |
git checkout amd-staging |