use configured git author in scaffolder actions

Co-authored-by: Himanshu Mishra <himanshu@orkohunter.net>
Signed-off-by: Chase Rutherford-Jenkins <chaseajen@users.noreply.github.com>
This commit is contained in:
Chase Rutherford-Jenkins
2021-06-29 22:10:56 -07:00
parent a6db3ff319
commit 921e3ca569
14 changed files with 139 additions and 68 deletions
+9
View File
@@ -17,6 +17,15 @@
export interface Config {
/** Configuration options for the scaffolder plugin */
scaffolder?: {
git?: {
/**
* The commit author info used when new components are created.
*/
author?: {
name?: string;
email?: string;
};
};
github?: {
[key: string]: string;
/**