docs: note to install and enable mod_xml_curl for dial-in (#1214) #593
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
| name: Mirroring | |
| on: [push, delete] | |
| jobs: | |
| to_codecommit: | |
| runs-on: ubuntu-latest | |
| env: | |
| CODECOMMIT_MIRROR_ENABLED: ${{ secrets.CODECOMMIT_MIRROR_ENABLED }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: CodeCommit Mirroring | |
| if: contains(env.CODECOMMIT_MIRROR_ENABLED, 'true') | |
| uses: pixta-dev/repository-mirroring-action@v1 | |
| with: | |
| target_repo_url: | |
| ${{ secrets.CODECOMMIT_TARGET_REPO_URL }} | |
| ssh_private_key: | |
| ${{ secrets.CODECOMMIT_SSH_PRIVATE_KEY }} | |
| ssh_username: | |
| ${{ secrets.CODECOMMIT_SSH_PRIVATE_KEY_ID }} |