chore(main): Preparing Next Release for 0.5.16 (#193) #127
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
# This workflow pushes changes from a public repository to a private repository. | |
name: Push to private repository | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
push_changes: | |
if: ${{ !contains(github.repository, 'private') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Set up Git configuration | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
- name: Setup SSH key | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.KEY_TO_PRIVATE }} | |
- name: Push changes to private repository | |
run: | | |
git remote add private [email protected]:${{ github.repository }}-private.git | |
git push --set-upstream private main |