Skip to content

chore/브랜치 타입 ci 추가#23

Merged
AndyH0ng merged 2 commits intodevelopfrom
chore/ci-type-branch#22
Jan 3, 2026
Merged

chore/브랜치 타입 ci 추가#23
AndyH0ng merged 2 commits intodevelopfrom
chore/ci-type-branch#22

Conversation

@AndyH0ng
Copy link
Member

@AndyH0ng AndyH0ng commented Jan 3, 2026

📌 관련 이슈

✨ 변경 내용

  • 브랜치 타입으로 ci를 추가합니다

💡 참고 사항

스크린샷, 참고 링크, 추가 설명 등 (없으면 생략 가능)

@AndyH0ng AndyH0ng self-assigned this Jan 3, 2026
@AndyH0ng AndyH0ng linked an issue Jan 3, 2026 that may be closed by this pull request
2 tasks
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @AndyH0ng, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

이 PR은 프로젝트의 브랜치 명명 규칙을 확장하여 CI/CD 관련 작업을 위한 'ci' 브랜치 타입을 도입합니다. 이는 개발 워크플로우의 일관성을 유지하고, CI/CD 파이프라인 변경사항을 명확하게 분류하며, pre-push 훅을 통해 새로운 브랜치 타입이 올바르게 검증되도록 합니다.

Highlights

  • 브랜치 타입 ci 추가: pre-push 훅에 허용되는 브랜치 타입 목록에 'ci'를 추가하여 CI/CD 관련 변경사항을 위한 브랜치 생성을 허용합니다.
  • 컨벤션 문서 업데이트: CONVENTION.md 파일에 'ci' 브랜치 타입과 그 목적(CI/CD 관련 변경)에 대한 설명을 추가하여 문서화합니다.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

이번 PR은 ci 브랜치 타입을 추가하여 CI/CD 관련 작업을 명확히 구분할 수 있도록 한 좋은 변경입니다. pre-push 훅 스크립트와 CONVENTION.md 문서에 ci 타입을 일관되게 추가한 점이 좋습니다. 다만, 리뷰 과정에서 커밋 컨벤션과 브랜치 컨벤션 간에 타입 불일치가 발견되었습니다. 일관성 유지를 위해 브랜치 컨벤션에도 누락된 타입들(style, test, perf)을 추가하고 관련 스크립트를 업데이트하는 것을 제안합니다. 이를 통해 개발 컨벤션의 명확성을 높일 수 있을 것입니다.


# 허용된 타입
allowed_types="feat|fix|refactor|design|chore|docs"
allowed_types="feat|fix|refactor|design|chore|docs|ci"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

CONVENTION.md에 대한 제안과 연관된 내용입니다. 브랜치 컨벤션에 style, test, perf 타입을 추가하게 된다면, 이 스크립트의 허용된 타입 목록도 함께 업데이트되어야 합니다. 이렇게 해야 pre-push 훅이 새로운 브랜치 타입을 올바르게 검증할 수 있습니다.

Suggested change
allowed_types="feat|fix|refactor|design|chore|docs|ci"
allowed_types="feat|fix|refactor|design|chore|docs|ci|style|test|perf"

| `design` | UI/UX 디자인 변경 |
| `chore` | 빌드, 설정 등 기타 |
| `docs` | 문서 작업 |
| `ci` | CI/CD 관련 변경 |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

CI/CD 관련 브랜치 타입 추가는 좋은 변경입니다. 다만, 현재 커밋 컨벤션과 브랜치 컨벤션 간에 타입 불일치가 있는 것으로 보입니다.

CONVENTION.md 파일의 커밋 컨벤션(9-20행)에는 style, test, perf 타입이 정의되어 있지만, 브랜치 컨벤션에는 해당 타입들이 누락되어 있습니다.

저장소의 컨벤션 일관성을 위해 이 타입들도 브랜치 컨벤션에 추가하고, .husky/pre-push 스크립트도 함께 업데이트하는 것을 고려해 보세요. 이렇게 하면 개발자들이 혼동 없이 두 컨벤션을 따를 수 있을 것입니다.

Suggested change
| `ci` | CI/CD 관련 변경 |
| `ci` | CI/CD 관련 변경 |
| `style` | 코드 포맷팅 (로직 변경 없음) |
| `test` | 테스트 추가/수정 |
| `perf` | 성능 개선 |

@AndyH0ng AndyH0ng merged commit bf9e501 into develop Jan 3, 2026
1 check passed
@AndyH0ng AndyH0ng deleted the chore/ci-type-branch#22 branch January 12, 2026 13:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

chore: 브랜치 타입 ci 추가

1 participant