test(CI): fix retrigger from feat/CI #17
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: Mirror Workflow 🪞 | |
env: | |
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:main --force |