feat: pydantic recipes (#575) #371
This file contains hidden or 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/ssh-agent@v0.5.0 | |
| with: | |
| ssh-private-key: ${{ secrets.KEY_TO_PRIVATE }} | |
| - name: Push changes to private repository | |
| run: | | |
| git remote add private git@github.com:${{ github.repository }}-private.git | |
| git push --set-upstream private main |