Skip to content

Update README.md

Update README.md #2

name: Sync public-release
on:
push:
branches:
- public-release # Sync only when public-release branch is updated
workflow_dispatch: # Sync manually
jobs:
push-to-public-repo:
runs-on: ubuntu-latest
steps:
- name: Checkout source repository
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Push changes to target repository
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.PAT }} # organization-level PAT
repository: boun-tabi-LMG/TURNA # Target repository
branch: public-release # Push to public-release branch
force: true
tags: true
directory: "."