style: remove side menu position transition (#5637) #1076
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: Sync Repositories | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- preview | |
env: | |
SOURCE_BRANCH_NAME: ${{ github.ref_name }} | |
jobs: | |
sync_changes: | |
runs-on: ubuntu-20.04 | |
permissions: | |
pull-requests: write | |
contents: read | |
steps: | |
- name: Checkout Code | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Setup GH CLI | |
run: | | |
type -p curl >/dev/null || (sudo apt update && sudo apt install curl -y) | |
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg | |
sudo chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg | |
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null | |
sudo apt update | |
sudo apt install gh -y | |
- name: Push Changes to Target Repo | |
env: | |
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
run: | | |
RUN_ID="${{ github.run_id }}" | |
TARGET_REPO="${{ vars.SYNC_TARGET_REPO }}" | |
TARGET_BRANCH="sync/${RUN_ID}" | |
SOURCE_BRANCH="${{ env.SOURCE_BRANCH_NAME }}" | |
git checkout $SOURCE_BRANCH | |
git remote add target-origin-a "https://[email protected]/$TARGET_REPO.git" | |
git push target-origin-a $SOURCE_BRANCH:$TARGET_BRANCH |