Skip to content

style: light 테마 사용 강제 #21

style: light 테마 사용 강제

style: light 테마 사용 강제 #21

Workflow file for this run

name: Sync to Forked Repo
on:
push:
branches:
- develop
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source repository
uses: actions/checkout@v4
with:
token: ${{ secrets.JIWON_GITHUB_KEY }}
fetch-depth: 0
ref: develop
- name: Configure git
run: |
git remote add forked-repo https://Choi-Jiwon-38:${{ secrets.JIWON_GITHUB_KEY }}@github.com/Choi-Jiwon-38/workinkorea.git
git config user.name "Choi-Jiwon-38"
git config user.email "[email protected]"
- name: Push changes to forked-repo
run: |
git push -f forked-repo develop
- name: Clean up
run: |
git remote remove forked-repo