-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
2 changed files
with
14 additions
and
5 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 |
---|---|---|
|
@@ -8,20 +8,19 @@ jobs: | |
sync: | ||
name: Sync forked repo | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout main | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${ VITE_SECRET_KEY } | ||
token: ${{ secrets.BRANCHIFY_TOKEN }} | ||
fetch-depth: 0 | ||
ref: main | ||
|
||
- name: Add remote-url | ||
run: | | ||
git remote add forked-repo https://hyuke81:${ VITE_SECRET_KEY }@github.com/hyuke81/Brachify_FE | ||
git remote add forked-repo https://hyuke81:${{ secrets.BRANCHIFY_TOKEN }}@github.com/hyuke81/Brachify_FE | ||
git config user.name hyuke81 | ||
git config user.email ${ [email protected] } | ||
git config user.email ${ ${{ secrets.EMAIL }} } | ||
- name: Push changes to forked-repo | ||
run: | | ||
|
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