refactor(infra): add-ci-gate-and-change-detection#3563
Open
sunghyun1000 wants to merge 6 commits into
Open
Conversation
Contributor
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
RyuRaseul
approved these changes
May 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
CI workflow를 변경 범위 기반으로 실행하고, 최종 결과를
CI Gate에서 확인하는 구조로 개편했습니다.기존에는 여러 CI job이 각자 내부 step에서 변경 여부를 확인하거나, 항상 실행되는 구조였습니다. 이로 인해 인프라/프론트/백엔드 CI가 늘어날수록 변경 범위와 무관한 job이 함께 실행되고, Required check 관리도 복잡해질 수 있었습니다.
이번 PR에서는 다음을 변경했습니다.
Detect Changesjob을 추가해 변경 범위 확인을 한 곳으로 모았습니다.Detect Changes결과를 보고 job-levelif로 실행 또는 skip됩니다.CI Gatejob을 추가해 모든 CI job 결과가success또는skipped인지 확인합니다.Lintjob을Lint PR Title,Lint Node.js,Lint Go로 분리했습니다.Typecheck는 관련 파일이 변경된 경우에만 실행되도록 변경했습니다.ci.yml수정 시 gate 연결 누락을 검증하는Validate CI Workflowjob을 추가했습니다.Additional context
이 PR이 merge되면 branch protection의 Required check 설정 변경이 필요합니다.
기존 개별 CI job Required 설정은 제거하고, 아래 check를 Required로 지정해야 합니다.
CI GateCodeQL특히 기존
Lint,Typecheck등을 Required로 유지하면, job 이름 변경 또는 skip으로 인해 pending 상태가 발생할 수 있습니다.Review 시에는 다음을 중점적으로 봐주시면 좋겠습니다.
CI Gate가 필요한 job을 모두 포함하고 있는지Detect Changes의 path 조건이 너무 넓거나 좁지 않은지Before submitting the PR, please make sure you do the following
fixes #123).