Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DaleStudy/github
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fix/squash-merge
Choose a base ref
...
head repository: DaleStudy/github
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 12 commits
  • 28 files changed
  • 2 contributors

Commits on Jul 21, 2026

  1. Merge pull request #49 from DaleStudy/fix/squash-merge

    fix: 병합을 squash 기본값으로 바꾸고 auto-merge 대신 즉시 병합
    DaleSeo authored Jul 21, 2026
    Configuration menu
    Copy the full SHA
    3ae799e View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2026

  1. 풀이 추가/수정 커밋시 기존 분석은 유지하고 추가/수정 파일에 대해서만 분석하도록 변경

    기존에는 풀이를 추가하거나 수정해서 커밋하면 기존 분석 댓글을 모두 삭제하고 모든 풀이에 대한
    분석 댓글을 다시 달았음. 분석 댓글에서 대화를 주고 받는 경우가 있는데 커밋이 되면 분석 내용이
    삭제되고 주고 받은 댓글 일부가 Conversations 탭에서 사라지는 문제가 있었음.
    
    변경된 방식은 풀이를 추가하거나 수정해도 기존 분석 댓글을 유지함. 추가되거나 수정된
    풀이에 대해서만 분석하여 댓글을 남김. 분석했던 코드 원본을 함께 분석 댓글에 포함하여
    맥락을 파악하는데 용이하도록 함.
    
    기존과 동일한 부분
    - PR 오픈과 재오픈한 경우엔 모든 풀이에 대해서 분석 댓글을 남김.
    - 삭제된 풀이는 분석하지 않음.
    
    Test: bun run test
    
    Issue: #48
    parkhojeong committed Jul 29, 2026
    Configuration menu
    Copy the full SHA
    c54e182 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2026

  1. Configuration menu
    Copy the full SHA
    31ac045 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2026

  1. 분석 대상 파일이 문자열 길이 제한을 초과해 잘린 경우에만 생략 문구 표시

    downloadFileEntries가 isContentTruncated 값을 함께 반환하고,
    해당 값을 분석 댓글 렌더링에 사용하도록 변경한다.
    
    MAX_FILE_SIZE는 파일의 바이트 단위 크기로 오해할 수 있어
    문자열 길이 제한임이 드러나도록 MAX_FILE_CONTENT_LENGTH로 변경한다.
    
    생략 문구 표시에 대한 경계값 테스트를 추가한다.
    parkhojeong committed Aug 2, 2026
    Configuration menu
    Copy the full SHA
    f99b314 View commit details
    Browse the repository at this point in the history
  2. 파일 내용의 백틱과 충돌하지 않도록 코드 fence 길이 조정

    파일 내용에 포함된 가장 긴 연속 백틱보다 긴 fence를 생성하여
    분석 댓글의 코드 블록이 중간에 닫히지 않도록 한다.
    parkhojeong committed Aug 2, 2026
    Configuration menu
    Copy the full SHA
    0a3e5d8 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2026

  1. 파일 SHA가 변경된 풀이만 다시 분석

    분석 댓글에 파일 SHA를 기록하고 기존 분석 댓글의 SHA와 비교해 아직 분석하지 않았거나 파일 내용이 변경된 풀이만 분석한다.
    
    웹훅의 changedFilenames 계산 및 전달 로직을 제거한다.
    parkhojeong committed Aug 3, 2026
    Configuration menu
    Copy the full SHA
    f6a09d3 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2026

  1. Merge pull request #50 from parkhojeong/260729-improve-tag-patterns-48

    풀이 추가/수정 커밋시 기존 분석은 유지하고 추가/수정 파일에 대해서만 분석하도록 변경
    DaleSeo authored Aug 5, 2026
    Configuration menu
    Copy the full SHA
    e46b93d View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2026

  1. feat: OpenAI 호출을 Cloudflare AI Gateway 경유로 전환

    PR 이벤트마다 도는 워크로드라 게이트웨이의 로그·캐싱·속도 제한·지출 한도가
    전부 실효가 있다. 재시도도 게이트웨이에 맡겨 Worker CPU 예산을 쓰지 않는다.
    
    OpenAI 키는 게이트웨이에 저장돼 있어 Worker 에서 제거하고,
    env.OPENAI_API_KEY 를 env.AI_GATEWAY_TOKEN 으로 대체했다.
    DaleSeo committed Aug 8, 2026
    Configuration menu
    Copy the full SHA
    6b709d0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9b9d10c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #51 from DaleStudy/feat/openai-via-ai-gateway

    OpenAI 호출을 Cloudflare AI Gateway 경유로 전환
    DaleSeo authored Aug 8, 2026
    Configuration menu
    Copy the full SHA
    ddb38ea View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2026

  1. Configuration menu
    Copy the full SHA
    03120a7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #52 from DaleStudy/feat/wrapup-automation

    리트코드 주차 마무리 자동화
    DaleSeo authored Aug 10, 2026
    Configuration menu
    Copy the full SHA
    f1bfb73 View commit details
    Browse the repository at this point in the history
Loading