We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b0c8f88 + 58a2a1e commit fefdbbeCopy full SHA for fefdbbe
sample_settings.ts
@@ -32,6 +32,10 @@ export default {
32
'gitlabgroup/projectname.1': 'GitHubOrg/projectname.1',
33
'gitlabgroup/projectname.2': 'GitHubOrg/projectname.2',
34
},
35
+ commitMap: {
36
+ 'gitlab-commit-hash-1': 'github-commit-hash-1',
37
+ 'gitlab-commit-hash-2': 'github-commit-hash-2',
38
+ },
39
conversion: {
40
useLowerCaseLabels: true,
41
addIssueInformation: true,
src/settings.ts
@@ -35,6 +35,9 @@ export default interface Settings {
log: boolean;
};
s3?: S3Settings;
+ [key: string]: string;
+ };
}
42
43
export interface GithubSettings {
0 commit comments