[pre-commit.ci] pre-commit autoupdate & removal of docconvert (#122) #7
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: Push to private repository | |
on: | |
push: | |
branches: | |
- develop | |
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 develop |