From b84a6db62fff68463192b548fab0b40aa97fea10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=8A=B9=EB=B9=88?= Date: Sun, 7 Jan 2024 20:30:06 +0900 Subject: [PATCH 01/10] =?UTF-8?q?[INIT]=20=EC=9D=B4=EC=8A=88,=20pr=20?= =?UTF-8?q?=ED=85=9C=ED=94=8C=EB=A6=BF=20=EC=84=B8=ED=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/issue_template.md | 0 .github/pull_request_template.md | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/issue_template.md create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/issue_template.md b/.github/ISSUE_TEMPLATE/issue_template.md new file mode 100644 index 00000000..e69de29b diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..e69de29b From 4c44e1ef37b50f2b05e5eae591a341c5fad7ebd6 Mon Sep 17 00:00:00 2001 From: choeseungbin Date: Sun, 7 Jan 2024 20:31:40 +0900 Subject: [PATCH 02/10] =?UTF-8?q?[INIT]=20=EC=9D=B4=EC=8A=88,=20pr=20?= =?UTF-8?q?=ED=85=9C=ED=94=8C=EB=A6=BF=20=EC=84=B8=ED=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/issue_template.md | 13 +++++++++++++ .github/pull_request_template.md | 8 ++++++++ 2 files changed, 21 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/issue_template.md b/.github/ISSUE_TEMPLATE/issue_template.md index e69de29b..ab1e841d 100644 --- a/.github/ISSUE_TEMPLATE/issue_template.md +++ b/.github/ISSUE_TEMPLATE/issue_template.md @@ -0,0 +1,13 @@ +[comment]: <> (priority 와 task size를 뱃지로 정해주세요) + +**📌 상세 설명** + +[comment]: <> (이슈에 대한 설명을 적어주세요) + +**📝 체크리스트** + +[comment]: <> (해야 할 일들을 상세히 나눠 적어주시면 좋아요) + +- [ ] + +- [ ] \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index e69de29b..971ff5e1 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -0,0 +1,8 @@ +## ✨ Related Issue +- close #이슈번호 +
+ +## 📝 기능 구현 명세 +- 이곳에는 postman 테스트 결과를 넣어주세요 + +## 🐥 추가적인 언급 사항 From 7c09a55225d57fb7a8fe68c1391ffc991687fb3e Mon Sep 17 00:00:00 2001 From: choeseungbin Date: Sun, 7 Jan 2024 21:05:13 +0900 Subject: [PATCH 03/10] =?UTF-8?q?[INIT]=20CI=20=EC=84=B8=ED=8C=85=ED=95=98?= =?UTF-8?q?=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/CI.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 00000000..1ea2049f --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,34 @@ +name: CI + +on: + pull_request: + branches: [ "develop" ] + +jobs: + build: + runs-on: ubuntu-22.04 + env: + working-directory: src + + steps: + - name: 체크아웃 + uses: actions/checkout@v3 + + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + distribution: 'corretto' + java-version: '17' + + - name: application.yaml 생성 + run: | + mkdir - p src/main/resources + echo "${{ secrets.APPLICATION }}" > ./application.yaml + working-directory: ${{ env.working-directory }} + + - name: 빌드 + run: | + chmod +x gradlew + ./gradlew build -x test + working-directory: ${{ env.working-directory }} + shell: bash \ No newline at end of file From 0584113939d2846ab1caf2594e10cda215b5c69e Mon Sep 17 00:00:00 2001 From: choeseungbin Date: Sun, 7 Jan 2024 21:46:19 +0900 Subject: [PATCH 04/10] =?UTF-8?q?[INIT]=20resources=20=ED=8F=B4=EB=8D=94?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/test | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/main/resources/test diff --git a/src/main/resources/test b/src/main/resources/test new file mode 100644 index 00000000..d4f6232b --- /dev/null +++ b/src/main/resources/test @@ -0,0 +1 @@ +안녕 \ No newline at end of file From 6713c3d4571070e526602a46c0f56ee20ebc87e5 Mon Sep 17 00:00:00 2001 From: choeseungbin Date: Sun, 7 Jan 2024 21:48:35 +0900 Subject: [PATCH 05/10] =?UTF-8?q?[FIX]=20CI=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1ea2049f..1dfbaf08 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -22,7 +22,7 @@ jobs: - name: application.yaml 생성 run: | - mkdir - p src/main/resources + cd src/main/resources echo "${{ secrets.APPLICATION }}" > ./application.yaml working-directory: ${{ env.working-directory }} From 81c13ffad8ed1d7863c3902335457ee83230f28d Mon Sep 17 00:00:00 2001 From: choeseungbin Date: Sun, 7 Jan 2024 21:51:10 +0900 Subject: [PATCH 06/10] =?UTF-8?q?[FIX]=20CI=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1dfbaf08..3bb84226 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -22,6 +22,7 @@ jobs: - name: application.yaml 생성 run: | + mkdir src/main/resources cd src/main/resources echo "${{ secrets.APPLICATION }}" > ./application.yaml working-directory: ${{ env.working-directory }} From 7309db7d2ce2947900edecae74ce19851c0a3895 Mon Sep 17 00:00:00 2001 From: choeseungbin Date: Sun, 7 Jan 2024 21:57:40 +0900 Subject: [PATCH 07/10] =?UTF-8?q?[FIX]=20CI=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3bb84226..a3b25f18 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -8,7 +8,7 @@ jobs: build: runs-on: ubuntu-22.04 env: - working-directory: src + working-directory: ./ steps: - name: 체크아웃 From c17014262ba44068d47f88da71400d468997804c Mon Sep 17 00:00:00 2001 From: choeseungbin Date: Sun, 7 Jan 2024 22:02:43 +0900 Subject: [PATCH 08/10] =?UTF-8?q?[FIX]=20CI=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a3b25f18..b858ebc8 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -7,8 +7,6 @@ on: jobs: build: runs-on: ubuntu-22.04 - env: - working-directory: ./ steps: - name: 체크아웃 From b5ac4bf80132ed05752c90b9230b74c2d5a0aa96 Mon Sep 17 00:00:00 2001 From: choeseungbin Date: Sun, 7 Jan 2024 22:05:05 +0900 Subject: [PATCH 09/10] =?UTF-8?q?[FIX]=20CI=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b858ebc8..fdb7030c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,8 +19,7 @@ jobs: java-version: '17' - name: application.yaml 생성 - run: | - mkdir src/main/resources + run: cd src/main/resources echo "${{ secrets.APPLICATION }}" > ./application.yaml working-directory: ${{ env.working-directory }} From 5918cd418db2579bc806610fd43f34b10b8e1484 Mon Sep 17 00:00:00 2001 From: choeseungbin Date: Sun, 7 Jan 2024 22:16:17 +0900 Subject: [PATCH 10/10] =?UTF-8?q?[FIX]=20CI=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fdb7030c..a001b991 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,7 +19,7 @@ jobs: java-version: '17' - name: application.yaml 생성 - run: + run: | cd src/main/resources echo "${{ secrets.APPLICATION }}" > ./application.yaml working-directory: ${{ env.working-directory }}