From 9f861dce368e290310b15afa7d2ca9119208b59d Mon Sep 17 00:00:00 2001 From: goeun kim Date: Fri, 22 Nov 2024 19:30:47 +0900 Subject: [PATCH 1/2] =?UTF-8?q?Fix:=20=EB=B9=8C=EB=93=9C=EA=B2=BD=EB=A1=9C?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto.yml b/.github/workflows/auto.yml index f708c3c..3c727c8 100644 --- a/.github/workflows/auto.yml +++ b/.github/workflows/auto.yml @@ -14,10 +14,14 @@ jobs: uses: actions/checkout@v4 - name: Install dependencies - run: yarn install + run: | + cd Lotte-Cinema + yarn install - name: Build project - run: yarn run build + run: | + cd Lotte-Cinema + yarn run build - name: Add remote-url run: | From e7aabaee3c5dfc3f5c98b34f069cd692e99855f6 Mon Sep 17 00:00:00 2001 From: goeun kim Date: Fri, 22 Nov 2024 19:40:35 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Feat:=20pr=20=EC=83=9D=EC=84=B1=EC=8B=9C=20?= =?UTF-8?q?=EC=9E=90=EB=8F=99=EB=B0=B0=ED=8F=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto.yml b/.github/workflows/auto.yml index 3c727c8..bb79b86 100644 --- a/.github/workflows/auto.yml +++ b/.github/workflows/auto.yml @@ -1,8 +1,14 @@ name: Synchronize to forked repo + on: - push: + push: # 브랜치로 push될 때 실행 branches: - main + - develop + pull_request: # PR 생성 및 업데이트 시 실행 + branches: + - main # main 브랜치에 대한 PR + - develop # develop 브랜치에 대한 PR jobs: sync: