File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 1+ import type { Commit , ParentCommitMessage } from '../types' ;
2+ import type { Context } from '@actions/github/lib/context' ;
3+ import type { components } from '@octokit/openapi-types' ;
14import type { Types } from '@technote-space/github-action-helper' ;
2- import { Context } from '@actions/github/lib/context' ;
3- import { components } from '@octokit/openapi-types' ;
45import { Utils } from '@technote-space/github-action-helper' ;
56import { MERGE_MESSAGE_PATTERN } from '../constant' ;
6- import { Commit , ParentCommitMessage } from '../types' ;
77import { parseCommitMessage } from './misc' ;
88
99type PullsListCommitsResponseData = components [ 'schemas' ] [ 'commit' ] ;
Original file line number Diff line number Diff line change 1- import { Logger } from '@technote-space/github-action-log-helper' ;
1+ import type { ParentCommitMessage , ChildCommitMessage } from '../types' ;
2+ import type { Logger } from '@technote-space/github-action-log-helper' ;
23import { SEMANTIC_MESSAGE_PATTERN } from '../constant' ;
3- import { ParentCommitMessage , ChildCommitMessage } from '../types' ;
44
55export const parseLine = ( message : string ) : ChildCommitMessage | undefined => {
66 const trim = message . trim ( ) ;
Original file line number Diff line number Diff line change 1- import { Context } from '@actions/github/lib/context' ;
2- import { Utils , ApiHelper , Types } from '@technote-space/github-action-helper' ;
3- import { Logger } from '@technote-space/github-action-log-helper' ;
1+ import type { Commit } from '../types' ;
2+ import type { Context } from '@actions/github/lib/context' ;
3+ import type { ApiHelper , Types } from '@technote-space/github-action-helper' ;
4+ import type { Logger } from '@technote-space/github-action-log-helper' ;
5+ import { Utils } from '@technote-space/github-action-helper' ;
46import { VERSION_BUMP } from '../constant' ;
5- import { Commit } from '../types' ;
67import { getCommits } from './commit' ;
78import { log } from './misc' ;
89
You can’t perform that action at this time.
0 commit comments