Pulling in all the changes from registry master for testing nat-removal. #507
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 is an action file to wruna workflow mirroring the repo to gitlab | |
name: gitlab mirroring | |
on: [push, pull_request] | |
jobs: | |
to_gitlab: | |
runs-on: ubuntu-latest | |
steps: # <-- must use actions/checkout@v1 before mirroring! | |
- uses: actions/checkout@v1 | |
- uses: pixta-dev/repository-mirroring-action@v1 | |
with: | |
target_repo_url: [email protected]:aptrust/registry.git | |
ssh_private_key: ${{ secrets.GITLAB_SSH_PRIVATE_KEY }} # <-- currently a private public key used with apt-deploy | |