Skip to content

hotfix: 소식 이벤트 데이터 Date 전처리 서버 패칭에서만 한번 처리하도록 수정 #36

hotfix: 소식 이벤트 데이터 Date 전처리 서버 패칭에서만 한번 처리하도록 수정

hotfix: 소식 이벤트 데이터 Date 전처리 서버 패칭에서만 한번 처리하도록 수정 #36

Workflow file for this run

name: push to forked repo
on:
push:
branches:
- main
jobs:
sync:
name: push to forked repo
runs-on: ubuntu-latest
steps:
- name: checkout main
uses: actions/checkout@v4
with:
token: ${{ secrets.FORKED_REPO_TOKEN }}
fetch-depth: 0
ref: main
- name: add remote-url
run: |
git remote add forked-repo https://Najeong-Kim:${{ secrets.FORKED_REPO_TOKEN }}@github.com/Najeong-Kim/BlockBuilderFront
git config user.name Najeong-Kim
git config user.email atpeoe1023@gmail.com
- name: push changes to forked-repo
run: |
git push -f forked-repo main
- name: clean up
run: |
git remote remove forked-repo