fix(CI): syntax #24
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: | ||
SOURCE_REPO: "EdukaiFR/website" | ||
MIRROR_URL: "khalidbelk/testCI.git" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- feat/CI | ||
- testCI | ||
jobs: | ||
push_to_mirror: | ||
if: github.repository == ${{ env.SOURCE_REPO }} | ||
Check failure on line 16 in .github/workflows/mirrorV2.yml GitHub Actions / Mirror Workflow 🪞Invalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: feat/CI | ||
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 feat/CI:testCI --force |