mirror of
https://github.com/thegeeklab/wp-git-action.git
synced 2024-11-10 03:20:40 +00:00
Robert Kaussow
6709777a8c
BREAKING CHANGE: The parameter `insecure_ssl_verify` was renamed to `insecure_skip_ssl_verify`
29 lines
462 B
Go
29 lines
462 B
Go
package git
|
|
|
|
const gitBin = "/usr/bin/git"
|
|
|
|
type Author struct {
|
|
Name string
|
|
Email string
|
|
}
|
|
|
|
type Repository struct {
|
|
RemoteName string
|
|
RemoteURL string
|
|
Branch string
|
|
|
|
Add string
|
|
CommitMsg string
|
|
|
|
Autocorrect string
|
|
NoVerify bool
|
|
InsecureSkipSSLVerify bool
|
|
EmptyCommit bool
|
|
PushFollowTags bool
|
|
ForcePush bool
|
|
WorkDir string
|
|
InitExists bool
|
|
|
|
Author Author
|
|
}
|