We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4944f3 commit 5925c97Copy full SHA for 5925c97
src/create-commit.ts
@@ -22,6 +22,7 @@ export async function createCommit(
22
message,
23
tree: state.latestCommitTreeSha,
24
parents: [latestCommitSha],
25
+ author: changes.author,
26
},
27
)
28
src/types.ts
@@ -29,6 +29,10 @@ export type Changes = {
29
}
30
emptyCommit?: boolean | string
31
commit: string
32
+ author?: {
33
+ name?: string
34
+ email?: string
35
+ }
36
37
38
// https://developer.github.com/v3/git/blobs/#parameters
0 commit comments