This repository has been archived by the owner on Jun 12, 2024. It is now read-only.
fix: change the DataState in usecase #15
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
# Mirrors the commits of this repo to the Epitech repo | |
name: Mirroring | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
epitech_mirror: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # Fetch depth set to 0 means that all commits are to be mirrored | |
- uses: pixta-dev/repository-mirroring-action@v1 | |
with: | |
target_repo_url: | |
git@github.com:EpitechMscProPromo2025/T-DEV-700-NAN_2 | |
ssh_private_key: | |
${{secrets.EPITECH_MIRROR_SSH_KEY}} |