We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8f6588 commit 4c10666Copy full SHA for 4c10666
src/github/graphql.ts
@@ -18,7 +18,7 @@ import { RepositoryWithCommitHistory } from '../github/types'
18
function formatLogMessage(...params: Record<string, unknown>[]): string {
19
return Object.entries(Object.assign({}, ...params) as Record<string, unknown>)
20
.map(([key, value]) => {
21
- return `${String(key)}: ${typeof value === 'string' ? value : JSON.stringify(value)}`
+ return `${key}: ${typeof value === 'string' ? value : JSON.stringify(value)}`
22
})
23
.join(', ')
24
}
src/main.ts
@@ -19,7 +19,6 @@ import {
NoFileChanges,
BranchNotFound,
BranchCommitNotFound,
- InputRepositoryInvalid,
InputBranchNotFound,
} from './errors'
25
0 commit comments