feat(doc): update doc #28
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: Mirroring to Epitech repository on GitHub | |
env: | |
MIRROR_SSH: [email protected]:EpitechPromo2026/B-DOP-500-NCE-5-1-whanos-gwenael.hubler.git | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
mirror: | |
name: Mirror repository | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Mirror repository | |
uses: pixta-dev/repository-mirroring-action@v1 | |
with: | |
target_repo_url: | |
${{ env.MIRROR_SSH }} | |
ssh_private_key: | |
${{ secrets.GIT_SSH_PRIVATE_KEY }} |