-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e2cfcb
commit f65e83d
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
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: "." |