fix: a gesture is one undo, not half of one #296
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: Mirror | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| branches-ignore: | |
| - 'ga-ignore-**' | |
| push: | |
| branches-ignore: | |
| - 'ga-ignore-**' | |
| env: | |
| MIRROR_URL: "git@github.com:EpitechPromo2027/G-EIP-600-PAR-6-1-eip-marius.rousset.git" | |
| jobs: | |
| push_to_mirror: | |
| name: "Pushing To The Mirror Repository" | |
| runs-on: ubuntu-latest | |
| if: github.event.repository.name != 'G-EIP-600-PAR-6-1-eip-marius.rousset' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: pixta-dev/repository-mirroring-action@v1 | |
| with: | |
| target_repo_url: ${{ env.MIRROR_URL }} | |
| ssh_private_key: ${{ secrets.GIT_SSH_PRIVATE_KEY }} |