Skip to content

test(CI): see if the event checker woks on destination repo #16

test(CI): see if the event checker woks on destination repo

test(CI): see if the event checker woks on destination repo #16

Workflow file for this run

name: Mirror Workflow 🪞
env:
# SOURCE_URL: "https://github.com/EdukaiFR/website.git"
MIRROR_URL: "khalidbelk/testCI.git"
on:
push:
branches:
- main
- feat/CI
jobs:
push_to_mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: main
token: ${{ secrets.PAT_TOKEN }}
- name: Push to mirror
run: |
set -e
git config user.name "Github Action"
git config user.email "action@github.com"
git remote add mirror https://${PAT}@github.com/${{ env.MIRROR_URL }}
git commit --allow-empty -m "[Mirror CI] - Update repository"
git push mirror main:feat/CI --force