Skip to content

Commit 7367b47

Browse files
committed
Merge branch 'main' into develop
2 parents c7aa420 + 176439c commit 7367b47

File tree

9 files changed

+403
-386
lines changed

9 files changed

+403
-386
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242
with:
4343
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
4444
token: ${{ secrets.GITHUB_TOKEN }}
45-
4645
- name: comment PR
4746
uses: thollander/actions-comment-pull-request@v1
4847
env:
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Trigger Sync - develop
2+
3+
on:
4+
repository_dispatch:
5+
types: [develop_updated]
6+
7+
jobs:
8+
trigger-sync-develop:
9+
if: github.repository == 'yulrang/Team-1-Codeit-youl'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Set up Git user
14+
run: |
15+
git config --global user.email "[email protected]"
16+
git config --global user.name "yulrang"
17+
- name: Sync fork
18+
run: |
19+
git remote add upstream https://github.com/CodeitFESI4-Team1/Team-1-Codeit.git
20+
git fetch upstream
21+
git checkout develop
22+
git merge -X theirs upstream/develop --allow-unrelated-histories || echo "Merge conflicts occurred"
23+
git push origin develop
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Trigger Fork Repo Action - develop
2+
on:
3+
push:
4+
branches:
5+
- develop
6+
jobs:
7+
trigger-fork-develop:
8+
if: github.repository_owner == 'CodeitFESI4-Team1'
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Trigger repository_dispatch - develop
12+
run: |
13+
curl -X POST \
14+
-H "Authorization: token ${{ secrets.PAT }}" \
15+
-H "Accept: application/vnd.github.everest-preview+json" \
16+
"https://api.github.com/repos/yulrang/Team-1-Codeit-youl/dispatches" \
17+
-d '{"event_type": "develop_updated"}'

.storybook/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ const config: StorybookConfig = {
1818
},
1919
},
2020
};
21-
2221
export default config;

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@
6767
| ![팀원5 사진](https://via.placeholder.com/100) | 이 율 | Front |
6868
| ![팀원6 사진](https://via.placeholder.com/100) | 최수형 | Front |
6969
| ![팀원7 사진](https://via.placeholder.com/100) | 이우현 | Back |
70-
| ![팀원8 사진](https://via.placeholder.com/100) | 이정우 | Back |
70+
| ![팀원8 사진](https://via.placeholder.com/100) | 이정우 | Back |

Team-1-Codeit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 0097cf6918586adcc47641699c49fcbfea029ec0

0 commit comments

Comments
 (0)