diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef76c610..ac1f07d1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,9 +33,6 @@ jobs: - name: Type check run: pnpm type-check - - name: Lint - run: pnpm lint - - name: Build run: pnpm build diff --git a/src/commands/aicommits.ts b/src/commands/aicommits.ts index 9b3bfc99..e76739cb 100644 --- a/src/commands/aicommits.ts +++ b/src/commands/aicommits.ts @@ -105,7 +105,7 @@ export default async ( return; } - message = selected; + message = selected as string; } await execa('git', ['commit', '-m', message, ...rawArgv]);