From 4d20aa4ebbc83ab7ad2fe62c01b2893f24b13ca0 Mon Sep 17 00:00:00 2001 From: 99mini Date: Tue, 5 Aug 2025 07:34:18 +0900 Subject: [PATCH 1/3] fix: make narrow openHour type --- src/lib/types/market.type.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/types/market.type.ts b/src/lib/types/market.type.ts index e1f0947..8b0aaf4 100644 --- a/src/lib/types/market.type.ts +++ b/src/lib/types/market.type.ts @@ -6,10 +6,10 @@ import {Weekday} from './weekday.type'; */ export type OpenHour = { dayOfWeek: Weekday; - /** 영업 시작 시간 */ - openTime: Date | string | null; - /** 영업 종료 시간 */ - closeTime: Date | string | null; + /** 영업 시작 시간 HH:mm */ + openTime: string; + /** 영업 종료 시간 HH:mm */ + closeTime: string; }; export type MarketType = { From 4fa1d8fe8bdc755adef54d21cea0f45cd2326515 Mon Sep 17 00:00:00 2001 From: 99mini Date: Tue, 5 Aug 2025 07:38:09 +0900 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20deps=20bot=EC=97=90=20=EC=9D=98?= =?UTF-8?q?=ED=95=B4=EC=84=9C=20=EC=83=9D=EC=84=B1=EB=90=98=EB=8A=94=20pr?= =?UTF-8?q?=EC=9D=80=20auto-release=20=EC=83=9D=EB=9E=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto-changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-changelog.yml b/.github/workflows/auto-changelog.yml index d0007c3..94f927e 100644 --- a/.github/workflows/auto-changelog.yml +++ b/.github/workflows/auto-changelog.yml @@ -16,7 +16,7 @@ concurrency: jobs: changelog: - if: "github.event.pull_request.merged == true && !startsWith(github.event.pull_request.title, 'release: v')" + if: "github.event.pull_request.merged == true && !startsWith(github.event.pull_request.title, 'release: v') && !startsWith(github.event.pull_request.title, 'chore(deps):')" runs-on: ubuntu-latest steps: - name: Checkout repository From af15891d89b7b44f8b80c572ba40f15678ac9f9a Mon Sep 17 00:00:00 2001 From: 99mini Date: Tue, 5 Aug 2025 07:48:04 +0900 Subject: [PATCH 3/3] =?UTF-8?q?chore:=20auto-pr=20=ED=8F=AC=EB=A9=A7=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/auto-changelog.yml | 112 +++++++++++++-------------- 1 file changed, 55 insertions(+), 57 deletions(-) diff --git a/.github/workflows/auto-changelog.yml b/.github/workflows/auto-changelog.yml index 94f927e..dbc5df0 100644 --- a/.github/workflows/auto-changelog.yml +++ b/.github/workflows/auto-changelog.yml @@ -65,8 +65,6 @@ jobs: commit-message: 'release: v${{ steps.get-version.outputs.VERSION }}' title: 'release: v${{ steps.get-version.outputs.VERSION }}' body: | - 이 PR은 자동으로 생성되었습니다. - ## 변경 사항 - package.json 버전 업데이트 (${{ steps.get-version.outputs.VERSION }}) - CHANGELOG.md 갱신 @@ -76,61 +74,61 @@ jobs:

명령어

pull request에 댓글로 명령어를 입력할 수 있습니다. -
-

버전 업데이트 (`/version:[command]`)

- - ```bash - /version:[x].[y].[z]+(-[\w\.]+)? - /version:[patch|minor|major|nightly|beta|alpha|rc] - ``` - **예시** - ```bash - /version:1.0.0 - ``` - ```bash - /version:1.0.0-alpha.1 - ``` - ```bash - /version:1.0.0-nightly.250804.abcdef - ``` - ```bash - /version:patch - ``` - ```bash - /version:minor - ``` - ```bash - /version:major - ``` - ```bash - /version:nightly - ``` - ```bash - /version:beta - ``` - ```bash - /version:alpha - ``` - ```bash - /version:rc - ``` -
- -
-

버전 스킵 (`/skip`)

- - ```bash - /skip - ``` -
- -
-

pull request 재개 (`/reopen`)

- - ```bash - /reopen - ``` -
+
    +
  • /version:[command]: 버전 업데이트
  • +
  • /skip: 버전 스킵
  • +
  • /reopen: pull request 재개
  • +
+ +

버전 업데이트 (/version:[command])

+ + ```bash + /version:[x].[y].[z]+(-[\w\.]+)? + /version:[patch|minor|major|nightly|beta|alpha|rc] + ``` + **예시** + ```bash + /version:1.0.0 + ``` + ```bash + /version:1.0.0-alpha.1 + ``` + ```bash + /version:1.0.0-nightly.250804.abcdef + ``` + ```bash + /version:patch + ``` + ```bash + /version:minor + ``` + ```bash + /version:major + ``` + ```bash + /version:nightly + ``` + ```bash + /version:beta + ``` + ```bash + /version:alpha + ``` + ```bash + /version:rc + ``` + +

버전 스킵 (/skip)

+ + ```bash + /skip + ``` + +

pull request 재개 (/reopen)

+ + ```bash + /reopen + ``` branch: auto-changelog-update base: main