From af94bc04fc53ac109b02918fce6bc682673cf99f Mon Sep 17 00:00:00 2001 From: "2jin2.1031" <2jin2.1031@gmail.com> Date: Mon, 11 May 2026 23:53:34 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20CI=20=ED=8A=B8=EB=A6=AC=EA=B1=B0?= =?UTF-8?q?=20=EB=B8=8C=EB=9E=9C=EC=B9=98=20=ED=8C=A8=ED=84=B4=20=ED=99=95?= =?UTF-8?q?=EC=9E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit feature branch 대상 자식 PR에서도 CI가 동작하도록 branches 패턴에 feat/**, fix/**, refactor/** 추가 Closes #330 Co-Authored-By: Claude Opus 4.6 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index a4c98c2e..54510b74 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -2,7 +2,7 @@ name: 올클 CI on: pull_request: - branches: [ "main" ] + branches: [ "main", "feat/**", "fix/**", "refactor/**" ] paths: - 'src/**' From e771a743219db47bd2398a8a79da760c20771dd8 Mon Sep 17 00:00:00 2001 From: kali <111180367+2Jin1031@users.noreply.github.com> Date: Mon, 18 May 2026 14:00:54 +0900 Subject: [PATCH 2/2] Remove spring-boot-starter-security dependency Removed spring-boot-starter-security dependency. --- build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/build.gradle b/build.gradle index 1ca3d51f..2c54e0d5 100644 --- a/build.gradle +++ b/build.gradle @@ -26,7 +26,6 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-web' - implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-validation' implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'org.springframework.boot:spring-boot-starter-mail'