Skip to content

refactor: TestApiPage를 개발 모드에서만 접근할 수 있도록 수정 #19

refactor: TestApiPage를 개발 모드에서만 접근할 수 있도록 수정

refactor: TestApiPage를 개발 모드에서만 접근할 수 있도록 수정 #19

Workflow file for this run

name: Synchronize the develop branch to forked repo
on:
push:
branches:
- develop
jobs:
sync:
name: Sync forked repo
runs-on: ubuntu-latest
steps:
- name: Checkout develop
uses: actions/checkout@v4
with:
token: ${{ secrets.AUTO_ACTIONS }}
fetch-depth: 0
ref: develop
- name: Add remote-url
run: |
git remote add forked-repo https://cskime:${{ secrets.AUTO_ACTIONS }}@github.com/cskime/rolling
git config user.name cskime
git config user.email ${{ secrets.EMAIL }}
- name: Push changes to forked-repo
run: |
git push -f forked-repo develop
- name: Clean up
run: |
git remote remove forked-repo