Adding new contributors

This commit is contained in:
gfleury 2020-03-05 13:11:30 -03:00
parent 6b375ee273
commit fbc0a17849
2 changed files with 33 additions and 0 deletions

View File

@ -1,5 +1,8 @@
Mark Nielsen <mark.nielsen@blackboard.com> Mark Nielsen <mark.nielsen@blackboard.com>
Matthias Preu <5973515+mpreu@users.noreply.github.com>
Maxim Sukharev <max@smacker.ru> Maxim Sukharev <max@smacker.ru>
Nikos Katirtzis <nikos912000@hotmail.com> Nikos Katirtzis <nikos912000@hotmail.com>
Ricardo Baptista <ricardogermano85@gmail.com> Ricardo Baptista <ricardogermano85@gmail.com>
Stanislav Afanasev <safanasev@gojuno.com> Stanislav Afanasev <safanasev@gojuno.com>
Vittorio Curcio <vittorio.curcio@lancom.de>
Yared Ayalew <yareda@gmail.com>

View File

@ -293,6 +293,36 @@ type Webhook struct {
Configuration WebhookConfiguration `json:"configuration"` Configuration WebhookConfiguration `json:"configuration"`
} }
// WebHookCallback contains payload to use while reading handling webhooks from bitbucket
type WebHookCallback struct {
Actor Actor `json:"actor"`
Repository Repository `json:"repository"`
Push struct {
Changes []Change `json:"changes"`
} `json:"push"`
}
// Actor contains the actor of reported changes from a webhook
type Actor struct {
Username string `json:"username"`
DisplayName string `json:"displayName"`
}
// Change contains changes reported by webhooks
type Change struct {
Created bool `json:"created"`
Closed bool `json:"closed"`
Old interface{} `json:"old"`
New struct {
Type string `json:"type"`
Name string `json:"name"`
Target struct {
Type string `json:"type"`
Hash string `json:"hash"`
} `json:"target"`
} `json:"new"`
}
func (k *SSHKey) String() string { func (k *SSHKey) String() string {
parts := make([]string, 1, 2) parts := make([]string, 1, 2)
parts[0] = strings.TrimSpace(k.Text) parts[0] = strings.TrimSpace(k.Text)