Compare commits
78 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2845fba51e | |||
| e1f5ba4c3a | |||
| ef903a2448 | |||
| 115b7e49a5 | |||
| 9ce6db7e53 | |||
| dc7efa3fa7 | |||
| c3faee81c0 | |||
| 26af15f0e6 | |||
| 2c25dbce5e | |||
| cc33de46ff | |||
| c86c1f184a | |||
| 2c92b6562c | |||
| 0c10330052 | |||
| a9a686f8e5 | |||
| 3534f74a83 | |||
| a740f8cf11 | |||
| 905cac71c9 | |||
| 71b069e705 | |||
| 471fb52f8c | |||
| 1751865845 | |||
| 0a9a3aab3e | |||
| 43ffb318d2 | |||
| 6edb377cee | |||
| c205145bc6 | |||
| a8ef7768a6 | |||
| 2b63b487a9 | |||
| c168baf1a5 | |||
| 08c3e54514 | |||
| 21587e152e | |||
| bf1a77d573 | |||
| d228b48c40 | |||
| 869ac76ba8 | |||
| ebe6b8d143 | |||
| c271d4f1c6 | |||
| 067e3f1d7a | |||
| 0f4713c1d1 | |||
| f053ac6ee1 | |||
| 65f5d60701 | |||
| 295aa6531f | |||
| a1e2052ae0 | |||
| d70f617c2d | |||
| 4ee4acfa25 | |||
| 8856cf3151 | |||
| 739eddd0c9 | |||
| acf48b9638 | |||
| 01a1302e02 | |||
| d9474f43ee | |||
| 4c7b9ae07d | |||
| bad16bfcd0 | |||
| 66059be93b | |||
| 175959ef60 | |||
| 399cac5122 | |||
| a1051fd871 | |||
| ac198c9e6a | |||
| e157e8e469 | |||
| b2ca22db96 | |||
| dee47c0482 | |||
| bba5196bce | |||
| 57ccf4fc30 | |||
| 1b9fe11c1f | |||
| 80aa7fa2fe | |||
| 88515706e6 | |||
| f1f5db7261 | |||
| a92dd933ba | |||
| 26ca2ef893 | |||
| 4fb25871a6 | |||
| 22a6a67d07 | |||
| d7570ff094 | |||
| 2dbe987740 | |||
| b3a5a8edf7 | |||
| dfc330f6eb | |||
| cdc59eb3ef | |||
| a39ebc145a | |||
| 24279ccb4b | |||
| 4708dcb9f1 | |||
| 3fda9e72e1 | |||
| a610eb250e | |||
| f583341fb8 |
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
language: go
|
language: go
|
||||||
go:
|
go:
|
||||||
- 1.10.3
|
- 1.12.1
|
||||||
- tip
|
- tip
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
@@ -29,6 +29,6 @@ script:
|
|||||||
- make test
|
- make test
|
||||||
|
|
||||||
after_success: |
|
after_success: |
|
||||||
[ $TRAVIS_GO_VERSION = 1.10.3 ] &&
|
[ $TRAVIS_GO_VERSION = 1.11.2 ] &&
|
||||||
overalls -project="github.com/go-playground/webhooks" -covermode=count -ignore=.git,_examples,testdata -debug &&
|
overalls -project="github.com/go-playground/webhooks" -covermode=count -ignore=.git,_examples,testdata -debug &&
|
||||||
goveralls -coverprofile=overalls.coverprofile -service travis-ci -repotoken $COVERALLS_TOKEN
|
goveralls -coverprofile=overalls.coverprofile -service travis-ci -repotoken $COVERALLS_TOKEN
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Library webhooks
|
Library webhooks
|
||||||
================
|
================
|
||||||
<img align="right" src="https://raw.githubusercontent.com/go-playground/webhooks/v5/logo.png">
|
<img align="right" src="https://raw.githubusercontent.com/go-playground/webhooks/v5/logo.png">
|
||||||
[](https://travis-ci.org/go-playground/webhooks)
|
[](https://travis-ci.org/go-playground/webhooks)
|
||||||
[](https://coveralls.io/github/go-playground/webhooks?branch=v5)
|
[](https://coveralls.io/github/go-playground/webhooks?branch=v5)
|
||||||
[](https://goreportcard.com/report/go-playground/webhooks)
|
[](https://goreportcard.com/report/go-playground/webhooks)
|
||||||
|
|||||||
@@ -0,0 +1,218 @@
|
|||||||
|
package bitbucketserver
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/hmac"
|
||||||
|
"crypto/sha256"
|
||||||
|
"encoding/hex"
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
ErrEventNotSpecifiedToParse = errors.New("no Event specified to parse")
|
||||||
|
ErrInvalidHTTPMethod = errors.New("invalid HTTP Method")
|
||||||
|
ErrMissingEventKeyHeader = errors.New("missing X-Event-Key Header")
|
||||||
|
ErrMissingHubSignatureHeader = errors.New("missing X-Hub-Signature Header")
|
||||||
|
ErrEventNotFound = errors.New("event not defined to be parsed")
|
||||||
|
ErrParsingPayload = errors.New("error parsing payload")
|
||||||
|
ErrHMACVerificationFailed = errors.New("HMAC verification failed")
|
||||||
|
)
|
||||||
|
|
||||||
|
type Event string
|
||||||
|
|
||||||
|
const (
|
||||||
|
RepositoryReferenceChangedEvent Event = "repo:refs_changed"
|
||||||
|
RepositoryModifiedEvent Event = "repo:modified"
|
||||||
|
RepositoryForkedEvent Event = "repo:forked"
|
||||||
|
RepositoryCommentAddedEvent Event = "repo:comment:added"
|
||||||
|
RepositoryCommentEditedEvent Event = "repo:comment:edited"
|
||||||
|
RepositoryCommentDeletedEvent Event = "repo:comment:deleted"
|
||||||
|
|
||||||
|
PullRequestOpenedEvent Event = "pr:opened"
|
||||||
|
PullRequestModifiedEvent Event = "pr:modified"
|
||||||
|
PullRequestMergedEvent Event = "pr:merged"
|
||||||
|
PullRequestDeclinedEvent Event = "pr:declined"
|
||||||
|
PullRequestDeletedEvent Event = "pr:deleted"
|
||||||
|
|
||||||
|
PullRequestReviewerUpdatedEvent Event = "pr:reviewer:updated"
|
||||||
|
PullRequestReviewerApprovedEvent Event = "pr:reviewer:approved"
|
||||||
|
PullRequestReviewerUnapprovedEvent Event = "pr:reviewer:unapproved"
|
||||||
|
PullRequestReviewerNeedsWorkEvent Event = "pr:reviewer:needs_work"
|
||||||
|
|
||||||
|
PullRequestCommentAddedEvent Event = "pr:comment:added"
|
||||||
|
PullRequestCommentEditedEvent Event = "pr:comment:edited"
|
||||||
|
PullRequestCommentDeletedEvent Event = "pr:comment:deleted"
|
||||||
|
|
||||||
|
DiagnosticsPingEvent Event = "diagnostics:ping"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Option is a configuration option for the webhook
|
||||||
|
type Option func(*Webhook) error
|
||||||
|
|
||||||
|
// Options is a namespace var for configuration options
|
||||||
|
var Options = WebhookOptions{}
|
||||||
|
|
||||||
|
// WebhookOptions is a namespace for configuration option methods
|
||||||
|
type WebhookOptions struct{}
|
||||||
|
|
||||||
|
// Secret registers the GitHub secret
|
||||||
|
func (WebhookOptions) Secret(secret string) Option {
|
||||||
|
return func(hook *Webhook) error {
|
||||||
|
hook.secret = secret
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Webhook instance contains all methods needed to process events
|
||||||
|
type Webhook struct {
|
||||||
|
secret string
|
||||||
|
}
|
||||||
|
|
||||||
|
// New creates and returns a WebHook instance denoted by the Provider type
|
||||||
|
func New(options ...Option) (*Webhook, error) {
|
||||||
|
hook := new(Webhook)
|
||||||
|
for _, opt := range options {
|
||||||
|
if err := opt(hook); err != nil {
|
||||||
|
return nil, errors.New("Error applying Option")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return hook, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (hook *Webhook) Parse(r *http.Request, events ...Event) (interface{}, error) {
|
||||||
|
defer func() {
|
||||||
|
_, _ = io.Copy(ioutil.Discard, r.Body)
|
||||||
|
_ = r.Body.Close()
|
||||||
|
}()
|
||||||
|
|
||||||
|
if len(events) == 0 {
|
||||||
|
return nil, ErrEventNotSpecifiedToParse
|
||||||
|
}
|
||||||
|
|
||||||
|
if r.Method != http.MethodPost {
|
||||||
|
return nil, ErrInvalidHTTPMethod
|
||||||
|
}
|
||||||
|
|
||||||
|
event := r.Header.Get("X-Event-Key")
|
||||||
|
if event == "" {
|
||||||
|
return nil, ErrMissingEventKeyHeader
|
||||||
|
}
|
||||||
|
|
||||||
|
bitbucketEvent := Event(event)
|
||||||
|
|
||||||
|
var found bool
|
||||||
|
for _, evt := range events {
|
||||||
|
if evt == bitbucketEvent {
|
||||||
|
found = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// event not defined to be parsed
|
||||||
|
if !found {
|
||||||
|
return nil, ErrEventNotFound
|
||||||
|
}
|
||||||
|
|
||||||
|
if bitbucketEvent == DiagnosticsPingEvent {
|
||||||
|
return DiagnosticsPingPayload{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
payload, err := ioutil.ReadAll(r.Body)
|
||||||
|
if err != nil || len(payload) == 0 {
|
||||||
|
return nil, ErrParsingPayload
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(hook.secret) > 0 {
|
||||||
|
signature := r.Header.Get("X-Hub-Signature")
|
||||||
|
if len(signature) == 0 {
|
||||||
|
return nil, ErrMissingHubSignatureHeader
|
||||||
|
}
|
||||||
|
mac := hmac.New(sha256.New, []byte(hook.secret))
|
||||||
|
_, _ = mac.Write(payload)
|
||||||
|
expectedMAC := hex.EncodeToString(mac.Sum(nil))
|
||||||
|
|
||||||
|
if !hmac.Equal([]byte(signature[7:]), []byte(expectedMAC)) {
|
||||||
|
return nil, ErrHMACVerificationFailed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
switch bitbucketEvent {
|
||||||
|
case RepositoryReferenceChangedEvent:
|
||||||
|
var pl RepositoryReferenceChangedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case RepositoryModifiedEvent:
|
||||||
|
var pl RepositoryModifiedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case RepositoryForkedEvent:
|
||||||
|
var pl RepositoryForkedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case RepositoryCommentAddedEvent:
|
||||||
|
var pl RepositoryCommentAddedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case RepositoryCommentEditedEvent:
|
||||||
|
var pl RepositoryCommentEditedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case RepositoryCommentDeletedEvent:
|
||||||
|
var pl RepositoryCommentDeletedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestOpenedEvent:
|
||||||
|
var pl PullRequestOpenedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestModifiedEvent:
|
||||||
|
var pl PullRequestModifiedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestMergedEvent:
|
||||||
|
var pl PullRequestMergedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestDeclinedEvent:
|
||||||
|
var pl PullRequestDeclinedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestDeletedEvent:
|
||||||
|
var pl PullRequestDeletedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestReviewerUpdatedEvent:
|
||||||
|
var pl PullRequestReviewerUpdatedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestReviewerApprovedEvent:
|
||||||
|
var pl PullRequestReviewerApprovedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestReviewerUnapprovedEvent:
|
||||||
|
var pl PullRequestReviewerUnapprovedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestReviewerNeedsWorkEvent:
|
||||||
|
var pl PullRequestReviewerNeedsWorkPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestCommentAddedEvent:
|
||||||
|
var pl PullRequestCommentAddedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestCommentEditedEvent:
|
||||||
|
var pl PullRequestCommentEditedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case PullRequestCommentDeletedEvent:
|
||||||
|
var pl PullRequestCommentDeletedPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unknown event %s", bitbucketEvent)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,319 @@
|
|||||||
|
package bitbucketserver
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"io"
|
||||||
|
"log"
|
||||||
|
"net/http"
|
||||||
|
"net/http/httptest"
|
||||||
|
"os"
|
||||||
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
path = "/webhooks"
|
||||||
|
)
|
||||||
|
|
||||||
|
var hook *Webhook
|
||||||
|
|
||||||
|
func TestMain(m *testing.M) {
|
||||||
|
// setup
|
||||||
|
var err error
|
||||||
|
hook, err = New(Options.Secret("secret"))
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
os.Exit(m.Run())
|
||||||
|
// teardown
|
||||||
|
}
|
||||||
|
|
||||||
|
func newServer(handler http.HandlerFunc) *httptest.Server {
|
||||||
|
mux := http.NewServeMux()
|
||||||
|
mux.HandleFunc(path, handler)
|
||||||
|
return httptest.NewServer(mux)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestBadRequests(t *testing.T) {
|
||||||
|
assert := require.New(t)
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
event Event
|
||||||
|
payload io.Reader
|
||||||
|
headers http.Header
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "BadNoEventHeader",
|
||||||
|
event: RepositoryReferenceChangedEvent,
|
||||||
|
payload: bytes.NewBuffer([]byte("{}")),
|
||||||
|
headers: http.Header{},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "BadSignatureLength",
|
||||||
|
event: RepositoryReferenceChangedEvent,
|
||||||
|
payload: bytes.NewBuffer([]byte("{}")),
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"repo:refs_changed"},
|
||||||
|
"X-Hub-Signature": []string{""},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "BadSignatureMatch",
|
||||||
|
event: RepositoryReferenceChangedEvent,
|
||||||
|
payload: bytes.NewBuffer([]byte("{}")),
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"repo:refs_changed"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=111"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "UnsubscribedEvent",
|
||||||
|
event: RepositoryReferenceChangedEvent,
|
||||||
|
payload: bytes.NewBuffer([]byte("{}")),
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"nonexistent_event"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=111"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
tc := tt
|
||||||
|
client := &http.Client{}
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
var parseError error
|
||||||
|
server := newServer(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
_, parseError = hook.Parse(r, tc.event)
|
||||||
|
})
|
||||||
|
defer server.Close()
|
||||||
|
|
||||||
|
req, err := http.NewRequest(http.MethodPost, server.URL+path, tc.payload)
|
||||||
|
assert.NoError(err)
|
||||||
|
req.Header = tc.headers
|
||||||
|
req.Header.Set("Content-Type", "application/json")
|
||||||
|
|
||||||
|
resp, err := client.Do(req)
|
||||||
|
|
||||||
|
assert.NoError(err)
|
||||||
|
assert.Equal(http.StatusOK, resp.StatusCode)
|
||||||
|
assert.Error(parseError)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWebhooks(t *testing.T) {
|
||||||
|
assert := require.New(t)
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
event Event
|
||||||
|
payloadType interface{}
|
||||||
|
filename string
|
||||||
|
headers http.Header
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "Repository refs updated",
|
||||||
|
event: RepositoryReferenceChangedEvent,
|
||||||
|
payloadType: RepositoryReferenceChangedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/repo-refs-changed.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"repo:refs_changed"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=8a60f7487d167f55886df87d4077192035d76f76a8e0b3a48fd8ae8cad25f391"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Repository modified",
|
||||||
|
event: RepositoryModifiedEvent,
|
||||||
|
payloadType: RepositoryModifiedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/repo-modified.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"repo:modified"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=1511ed69d7697ede1699b0217e17b7d0b492eeccc9a5649d5d30dd84f0e5a89a"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Repository forked",
|
||||||
|
event: RepositoryForkedEvent,
|
||||||
|
payloadType: RepositoryForkedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/repo-forked.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"repo:forked"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=d34115023042f9e7ef7020200650e2f34da137e0217708475f9b749ad889a16d"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Repository commit comment edited",
|
||||||
|
event: RepositoryCommentEditedEvent,
|
||||||
|
payloadType: RepositoryCommentEditedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/repo-comment-edited.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"repo:comment:edited"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=90a8f4898d8dd7a4ef99e33a7f1d86dd3645f45b2a5b59110493cc4b3062a712"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Repository commit comment deleted",
|
||||||
|
event: RepositoryCommentDeletedEvent,
|
||||||
|
payloadType: RepositoryCommentDeletedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/repo-comment-deleted.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"repo:comment:deleted"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=e8b6d3d1581366c9f65949c93149b29ba33252f6afa807432f8f823fb08680e7"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Repository commit comment added",
|
||||||
|
event: RepositoryCommentAddedEvent,
|
||||||
|
payloadType: RepositoryCommentAddedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/repo-comment-added.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"repo:comment:added"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=80b121d53ec48bb3f8bed9243ba53be62c8eb7d1ce0395ca87fef1938bf9620e"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request unapproved",
|
||||||
|
event: PullRequestReviewerUnapprovedEvent,
|
||||||
|
payloadType: PullRequestReviewerUnapprovedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-reviewer-unapproved.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:reviewer:unapproved"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=9822024378738817dc85c0a41feb9fa4825058d28a9a1ee7065bfacd6a04c7c1"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request reviewer updated",
|
||||||
|
event: PullRequestReviewerUpdatedEvent,
|
||||||
|
payloadType: PullRequestReviewerUpdatedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-reviewer-updated.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:reviewer:updated"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=07ca94a0a5c5913819a16ce0414f976023aeb0065fa9d80f990aad7f1d936be5"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request opened",
|
||||||
|
event: PullRequestOpenedEvent,
|
||||||
|
payloadType: PullRequestOpenedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-opened.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:opened"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=b82c323978a741aa256c0a6bfa13a8f211e1795bd8ddb2641ced122769f7a7c6"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request modified",
|
||||||
|
event: PullRequestModifiedEvent,
|
||||||
|
payloadType: PullRequestModifiedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-modified.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:modified"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=1e307462390ff6f0c59fcdb8eb4b2977058b5cbc502a24a0db385f5331136227"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request merged",
|
||||||
|
event: PullRequestMergedEvent,
|
||||||
|
payloadType: PullRequestMergedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-merged.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:merged"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=adbee42ddd6a178b0c1160e89f666b53fb8c76495f782a4e3055e3fbee232704"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request marked needs work",
|
||||||
|
event: PullRequestReviewerNeedsWorkEvent,
|
||||||
|
payloadType: PullRequestReviewerNeedsWorkPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-reviewer-needs-work.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:reviewer:needs_work"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=3d10aadcede2131674654bb48c10fe904b0b2ed3d3b283bdc5c64dbc4856582d"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request deleted",
|
||||||
|
event: PullRequestDeletedEvent,
|
||||||
|
payloadType: PullRequestDeletedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-deleted.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:deleted"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=657c5d9839c0e3c1c95e5ceceacb07f0e372328883dab6e25bb619ee8b19a359"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request declined",
|
||||||
|
event: PullRequestDeclinedEvent,
|
||||||
|
payloadType: PullRequestDeclinedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-declined.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:declined"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=e323ab4d057f32475340d03c90aa9ec20cd3a96c15200d75e59f221c14053528"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request comment edited",
|
||||||
|
event: PullRequestCommentEditedEvent,
|
||||||
|
payloadType: PullRequestCommentEditedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-comment-edited.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:comment:edited"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=66580d1b02904e470cb48c1333452ea0748aecc3a9806f5a0f949be3a8b0a5ec"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request comment deleted",
|
||||||
|
event: PullRequestCommentDeletedEvent,
|
||||||
|
payloadType: PullRequestCommentDeletedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-comment-deleted.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:comment:deleted"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=7c9575a6e9b141e063ef34e5066ebe67c3a5b59241e633d1332d70aba468fd04"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pull request comment added",
|
||||||
|
event: PullRequestReviewerApprovedEvent,
|
||||||
|
payloadType: PullRequestReviewerApprovedPayload{},
|
||||||
|
filename: "../testdata/bitbucket-server/pr-reviewer-approved.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Event-Key": []string{"pr:reviewer:approved"},
|
||||||
|
"X-Hub-Signature": []string{"sha256=a8b78d774dea02f234069f724ee6c6a3c5c13fc3a3b856dac0a33d8ed9ec1823"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
tc := tt
|
||||||
|
client := &http.Client{}
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
payload, err := os.Open(tc.filename)
|
||||||
|
assert.NoError(err)
|
||||||
|
defer func() {
|
||||||
|
_ = payload.Close()
|
||||||
|
}()
|
||||||
|
|
||||||
|
var parseError error
|
||||||
|
var results interface{}
|
||||||
|
|
||||||
|
server := newServer(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
results, parseError = hook.Parse(r, tc.event)
|
||||||
|
})
|
||||||
|
defer server.Close()
|
||||||
|
|
||||||
|
req, err := http.NewRequest(http.MethodPost, server.URL+path, payload)
|
||||||
|
assert.NoError(err)
|
||||||
|
req.Header = tc.headers
|
||||||
|
req.Header.Set("Content-Type", "application/json")
|
||||||
|
|
||||||
|
resp, err := client.Do(req)
|
||||||
|
assert.NoError(err)
|
||||||
|
assert.Equal(http.StatusOK, resp.StatusCode)
|
||||||
|
assert.NoError(parseError)
|
||||||
|
assert.Equal(reflect.TypeOf(tc.payloadType), reflect.TypeOf(results))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,273 @@
|
|||||||
|
package bitbucketserver
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type DiagnosticsPingPayload struct{}
|
||||||
|
|
||||||
|
type RepositoryReferenceChangedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
Repository Repository `json:"repository"`
|
||||||
|
Changes []RepositoryChange `json:"changes"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type RepositoryModifiedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
Old Repository `json:"old"`
|
||||||
|
New Repository `json:"new"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type RepositoryForkedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
Repository Repository `json:"repository"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type RepositoryCommentAddedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
Comment Comment `json:"comment"`
|
||||||
|
Repository Repository `json:"repository"`
|
||||||
|
Commit string `json:"commit"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type RepositoryCommentEditedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
Comment Comment `json:"comment"`
|
||||||
|
PreviousComment string `json:"previousComment"`
|
||||||
|
Repository Repository `json:"repository"`
|
||||||
|
Commit string `json:"commit"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type RepositoryCommentDeletedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
Comment Comment `json:"comment"`
|
||||||
|
Repository Repository `json:"repository"`
|
||||||
|
Commit string `json:"commit"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestOpenedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestModifiedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
PreviousTitle string `json:"previousTitle"`
|
||||||
|
PreviousDescription string `json:"previousDescription"`
|
||||||
|
PreviousTarget map[string]interface{} `json:"previousTarget"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestMergedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestDeclinedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestDeletedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestReviewerUpdatedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
RemovedReviewers []User `json:"removedReviewers"`
|
||||||
|
AddedReviewers []User `json:"addedReviewers"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestReviewerApprovedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
Participant PullRequestParticipant `json:"participant"`
|
||||||
|
PreviousStatus string `json:"previousStatus"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestReviewerUnapprovedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
Participant PullRequestParticipant `json:"participant"`
|
||||||
|
PreviousStatus string `json:"previousStatus"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestReviewerNeedsWorkPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
Participant PullRequestParticipant `json:"participant"`
|
||||||
|
PreviousStatus string `json:"previousStatus"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestCommentAddedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
Comment Comment `json:"comment"`
|
||||||
|
CommentParentId uint64 `json:"commentParentId,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestCommentEditedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
Comment Comment `json:"comment"`
|
||||||
|
CommentParentId string `json:"commentParentId,omitempty"`
|
||||||
|
PreviousComment string `json:"previousComment"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestCommentDeletedPayload struct {
|
||||||
|
Date Date `json:"date"`
|
||||||
|
EventKey Event `json:"eventKey"`
|
||||||
|
Actor User `json:"actor"`
|
||||||
|
PullRequest PullRequest `json:"pullRequest"`
|
||||||
|
Comment Comment `json:"comment"`
|
||||||
|
CommentParentId uint64 `json:"commentParentId,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------
|
||||||
|
|
||||||
|
type User struct {
|
||||||
|
ID uint64 `json:"id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
EmailAddress string `json:"emailAddress"`
|
||||||
|
DisplayName string `json:"displayName"`
|
||||||
|
Active bool `json:"active"`
|
||||||
|
Slug string `json:"slug"`
|
||||||
|
Type string `json:"type"`
|
||||||
|
Links map[string]interface{} `json:"links"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Repository struct {
|
||||||
|
ID uint64 `json:"id"`
|
||||||
|
Slug string `json:"slug"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
ScmId string `json:"scmId"`
|
||||||
|
State string `json:"state"`
|
||||||
|
StatusMessage string `json:"statusMessage"`
|
||||||
|
Forkable bool `json:"forkable"`
|
||||||
|
Origin *Repository `json:"origin,omitempty"`
|
||||||
|
Project Project `json:"project"`
|
||||||
|
Public bool `json:"public"`
|
||||||
|
Links map[string]interface{} `json:"links"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Project struct {
|
||||||
|
ID uint64 `json:"id"`
|
||||||
|
Key string `json:"key"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Type string `json:"type"`
|
||||||
|
Public *bool `json:"public,omitempty"`
|
||||||
|
Owner User `json:"owner"`
|
||||||
|
Links map[string]interface{} `json:"links"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequest struct {
|
||||||
|
ID uint64 `json:"id"`
|
||||||
|
Version uint64 `json:"version"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
Description string `json:"description,omitempty"`
|
||||||
|
State string `json:"state"`
|
||||||
|
Open bool `json:"open"`
|
||||||
|
Closed bool `json:"closed"`
|
||||||
|
CreatedDate uint64 `json:"createdDate"`
|
||||||
|
UpdatedDate uint64 `json:"updatedDate,omitempty"`
|
||||||
|
ClosedDate uint64 `json:"closedDate,omitempty"`
|
||||||
|
FromRef RepositoryReference `json:"fromRef"`
|
||||||
|
ToRef RepositoryReference `json:"toRef"`
|
||||||
|
Locked bool `json:"locked"`
|
||||||
|
Author PullRequestParticipant `json:"author"`
|
||||||
|
Reviewers []PullRequestParticipant `json:"reviewers"`
|
||||||
|
Participants []PullRequestParticipant `json:"participants"`
|
||||||
|
Properties map[string]interface{} `json:"properties,omitempty"`
|
||||||
|
Links map[string]interface{} `json:"links"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type RepositoryChange struct {
|
||||||
|
Reference RepositoryReference `json:"ref"`
|
||||||
|
ReferenceId string `json:"refId"`
|
||||||
|
FromHash string `json:"fromHash"`
|
||||||
|
ToHash string `json:"toHash"`
|
||||||
|
Type string `json:"type"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type RepositoryReference struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
DisplayId string `json:"displayId"`
|
||||||
|
Type string `json:"type,omitempty"`
|
||||||
|
LatestCommit string `json:"latestCommit,omitempty"`
|
||||||
|
Repository Repository `json:"repository,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Comment struct {
|
||||||
|
ID uint64 `json:"id"`
|
||||||
|
Properties map[string]interface{} `json:"properties,omitempty"`
|
||||||
|
Version uint64 `json:"version"`
|
||||||
|
Text string `json:"text"`
|
||||||
|
Author User `json:"author"`
|
||||||
|
CreatedDate uint64 `json:"createdDate"`
|
||||||
|
UpdatedDate uint64 `json:"updatedDate"`
|
||||||
|
Comments []map[string]interface{} `json:"comments"`
|
||||||
|
Tasks []map[string]interface{} `json:"tasks"`
|
||||||
|
PermittedOperations map[string]interface{} `json:"permittedOperations,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PullRequestParticipant struct {
|
||||||
|
User User `json:"user"`
|
||||||
|
LastReviewedCommit string `json:"lastReviewedCommit,omitempty"`
|
||||||
|
Role string `json:"role"`
|
||||||
|
Approved bool `json:"approved"`
|
||||||
|
Status string `json:"status"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Date time.Time
|
||||||
|
|
||||||
|
func (b *Date) UnmarshalJSON(p []byte) error {
|
||||||
|
t, err := time.Parse("2006-01-02T15:04:05Z0700", strings.Replace(string(p), "\"", "", -1))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
*b = Date(t)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b Date) MarshalJSON() ([]byte, error) {
|
||||||
|
stamp := fmt.Sprintf("\"%s\"", time.Time(b).Format("2006-01-02T15:04:05Z0700"))
|
||||||
|
return []byte(stamp), nil
|
||||||
|
}
|
||||||
@@ -93,7 +93,7 @@ func (hook Webhook) Parse(r *http.Request, events ...Event) (interface{}, error)
|
|||||||
}
|
}
|
||||||
|
|
||||||
uuid := r.Header.Get("X-Hook-UUID")
|
uuid := r.Header.Get("X-Hook-UUID")
|
||||||
if uuid == "" {
|
if hook.uuid != "" && uuid == "" {
|
||||||
return nil, ErrMissingHookUUIDHeader
|
return nil, ErrMissingHookUUIDHeader
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -348,8 +348,9 @@ type PullRequestCommentDeletedPayload struct {
|
|||||||
// Owner is the common Bitbucket Owner Sub Entity
|
// Owner is the common Bitbucket Owner Sub Entity
|
||||||
type Owner struct {
|
type Owner struct {
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
Username string `json:"username"`
|
NickName string `json:"nickname"`
|
||||||
DisplayName string `json:"display_name"`
|
DisplayName string `json:"display_name"`
|
||||||
|
AccountId string `json:"account_id"`
|
||||||
UUID string `json:"uuid"`
|
UUID string `json:"uuid"`
|
||||||
Links struct {
|
Links struct {
|
||||||
Self struct {
|
Self struct {
|
||||||
|
|||||||
@@ -0,0 +1,93 @@
|
|||||||
|
package docker
|
||||||
|
|
||||||
|
// this package recieves the Docker Hub Automated Build webhook
|
||||||
|
// https://docs.docker.com/docker-hub/webhooks/
|
||||||
|
// NOT the Docker Trusted Registry webhook
|
||||||
|
// https://docs.docker.com/ee/dtr/user/create-and-manage-webhooks/
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
// parse errors
|
||||||
|
var (
|
||||||
|
ErrInvalidHTTPMethod = errors.New("invalid HTTP Method")
|
||||||
|
ErrParsingPayload = errors.New("error parsing payload")
|
||||||
|
)
|
||||||
|
|
||||||
|
// Event defines a Docker hook event type
|
||||||
|
type Event string
|
||||||
|
|
||||||
|
// Docker hook types (only one for now)
|
||||||
|
const (
|
||||||
|
BuildEvent Event = "build"
|
||||||
|
)
|
||||||
|
|
||||||
|
// BuildPayload a docker hub build notice
|
||||||
|
// https://docs.docker.com/docker-hub/webhooks/
|
||||||
|
type BuildPayload struct {
|
||||||
|
CallbackURL string `json:"callback_url"`
|
||||||
|
PushData struct {
|
||||||
|
Images []string `json:"images"`
|
||||||
|
PushedAt float32 `json:"pushed_at"`
|
||||||
|
Pusher string `json:"pusher"`
|
||||||
|
Tag string `json:"tag"`
|
||||||
|
} `json:"push_data"`
|
||||||
|
Repository struct {
|
||||||
|
CommentCount int `json:"comment_count"`
|
||||||
|
DateCreated float32 `json:"date_created"`
|
||||||
|
Description string `json:"description"`
|
||||||
|
Dockerfile string `json:"dockerfile"`
|
||||||
|
FullDescription string `json:"full_description"`
|
||||||
|
IsOfficial bool `json:"is_official"`
|
||||||
|
IsPrivate bool `json:"is_private"`
|
||||||
|
IsTrusted bool `json:"is_trusted"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Namespace string `json:"namespace"`
|
||||||
|
Owner string `json:"owner"`
|
||||||
|
RepoName string `json:"repo_name"`
|
||||||
|
RepoURL string `json:"repo_url"`
|
||||||
|
StarCount int `json:"star_count"`
|
||||||
|
Status string `json:"status"`
|
||||||
|
} `json:"repository"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Webhook instance contains all methods needed to process events
|
||||||
|
type Webhook struct {
|
||||||
|
secret string
|
||||||
|
}
|
||||||
|
|
||||||
|
// New creates and returns a WebHook instance
|
||||||
|
func New() (*Webhook, error) {
|
||||||
|
hook := new(Webhook)
|
||||||
|
return hook, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse verifies and parses the events specified and returns the payload object or an error
|
||||||
|
func (hook Webhook) Parse(r *http.Request, events ...Event) (interface{}, error) {
|
||||||
|
defer func() {
|
||||||
|
_, _ = io.Copy(ioutil.Discard, r.Body)
|
||||||
|
_ = r.Body.Close()
|
||||||
|
}()
|
||||||
|
|
||||||
|
if r.Method != http.MethodPost {
|
||||||
|
return nil, ErrInvalidHTTPMethod
|
||||||
|
}
|
||||||
|
|
||||||
|
payload, err := ioutil.ReadAll(r.Body)
|
||||||
|
if err != nil || len(payload) == 0 {
|
||||||
|
return nil, ErrParsingPayload
|
||||||
|
}
|
||||||
|
|
||||||
|
var pl BuildPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
if err != nil {
|
||||||
|
return nil, ErrParsingPayload
|
||||||
|
}
|
||||||
|
return pl, err
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,95 @@
|
|||||||
|
package docker
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"net/http"
|
||||||
|
"net/http/httptest"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"reflect"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
// NOTES:
|
||||||
|
// - Run "go test" to run tests
|
||||||
|
// - Run "gocov test | gocov report" to report on test converage by file
|
||||||
|
// - Run "gocov test | gocov annotate -" to report on all code and functions, those ,marked with "MISS" were never called
|
||||||
|
//
|
||||||
|
// or
|
||||||
|
//
|
||||||
|
// -- may be a good idea to change to output path to somewherelike /tmp
|
||||||
|
// go test -coverprofile cover.out && go tool cover -html=cover.out -o cover.html
|
||||||
|
//
|
||||||
|
|
||||||
|
const (
|
||||||
|
path = "/webhooks"
|
||||||
|
)
|
||||||
|
|
||||||
|
var hook *Webhook
|
||||||
|
|
||||||
|
func TestMain(m *testing.M) {
|
||||||
|
|
||||||
|
// setup
|
||||||
|
var err error
|
||||||
|
hook, err = New()
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
os.Exit(m.Run())
|
||||||
|
// teardown
|
||||||
|
}
|
||||||
|
|
||||||
|
func newServer(handler http.HandlerFunc) *httptest.Server {
|
||||||
|
mux := http.NewServeMux()
|
||||||
|
mux.HandleFunc(path, handler)
|
||||||
|
return httptest.NewServer(mux)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWebhooks(t *testing.T) {
|
||||||
|
assert := require.New(t)
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
event Event
|
||||||
|
typ interface{}
|
||||||
|
filename string
|
||||||
|
headers http.Header
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "BuildEvent",
|
||||||
|
event: BuildEvent,
|
||||||
|
typ: BuildPayload{},
|
||||||
|
filename: "../testdata/docker/docker_hub_build_notice.json",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
tc := tt
|
||||||
|
client := &http.Client{}
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
payload, err := os.Open(tc.filename)
|
||||||
|
assert.NoError(err)
|
||||||
|
defer func() {
|
||||||
|
_ = payload.Close()
|
||||||
|
}()
|
||||||
|
|
||||||
|
var parseError error
|
||||||
|
var results interface{}
|
||||||
|
server := newServer(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
results, parseError = hook.Parse(r, tc.event)
|
||||||
|
})
|
||||||
|
defer server.Close()
|
||||||
|
req, err := http.NewRequest(http.MethodPost, server.URL+path, payload)
|
||||||
|
assert.NoError(err)
|
||||||
|
req.Header.Set("Content-Type", "application/json")
|
||||||
|
|
||||||
|
resp, err := client.Do(req)
|
||||||
|
assert.NoError(err)
|
||||||
|
assert.Equal(http.StatusOK, resp.StatusCode)
|
||||||
|
assert.NoError(parseError)
|
||||||
|
assert.Equal(reflect.TypeOf(tc.typ), reflect.TypeOf(results))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
+64
-33
@@ -28,39 +28,46 @@ type Event string
|
|||||||
|
|
||||||
// GitHub hook types
|
// GitHub hook types
|
||||||
const (
|
const (
|
||||||
CommitCommentEvent Event = "commit_comment"
|
CheckRunEvent Event = "check_run"
|
||||||
CreateEvent Event = "create"
|
CheckSuiteEvent Event = "check_suite"
|
||||||
DeleteEvent Event = "delete"
|
CommitCommentEvent Event = "commit_comment"
|
||||||
DeploymentEvent Event = "deployment"
|
CreateEvent Event = "create"
|
||||||
DeploymentStatusEvent Event = "deployment_status"
|
DeleteEvent Event = "delete"
|
||||||
ForkEvent Event = "fork"
|
DeploymentEvent Event = "deployment"
|
||||||
GollumEvent Event = "gollum"
|
DeploymentStatusEvent Event = "deployment_status"
|
||||||
InstallationEvent Event = "installation"
|
ForkEvent Event = "fork"
|
||||||
IntegrationInstallationEvent Event = "integration_installation"
|
GollumEvent Event = "gollum"
|
||||||
IssueCommentEvent Event = "issue_comment"
|
InstallationEvent Event = "installation"
|
||||||
IssuesEvent Event = "issues"
|
InstallationRepositoriesEvent Event = "installation_repositories"
|
||||||
LabelEvent Event = "label"
|
IntegrationInstallationEvent Event = "integration_installation"
|
||||||
MemberEvent Event = "member"
|
IntegrationInstallationRepositoriesEvent Event = "integration_installation_repositories"
|
||||||
MembershipEvent Event = "membership"
|
IssueCommentEvent Event = "issue_comment"
|
||||||
MilestoneEvent Event = "milestone"
|
IssuesEvent Event = "issues"
|
||||||
OrganizationEvent Event = "organization"
|
LabelEvent Event = "label"
|
||||||
OrgBlockEvent Event = "org_block"
|
MemberEvent Event = "member"
|
||||||
PageBuildEvent Event = "page_build"
|
MembershipEvent Event = "membership"
|
||||||
PingEvent Event = "ping"
|
MilestoneEvent Event = "milestone"
|
||||||
ProjectCardEvent Event = "project_card"
|
MetaEvent Event = "meta"
|
||||||
ProjectColumnEvent Event = "project_column"
|
OrganizationEvent Event = "organization"
|
||||||
ProjectEvent Event = "project"
|
OrgBlockEvent Event = "org_block"
|
||||||
PublicEvent Event = "public"
|
PageBuildEvent Event = "page_build"
|
||||||
PullRequestEvent Event = "pull_request"
|
PingEvent Event = "ping"
|
||||||
PullRequestReviewEvent Event = "pull_request_review"
|
ProjectCardEvent Event = "project_card"
|
||||||
PullRequestReviewCommentEvent Event = "pull_request_review_comment"
|
ProjectColumnEvent Event = "project_column"
|
||||||
PushEvent Event = "push"
|
ProjectEvent Event = "project"
|
||||||
ReleaseEvent Event = "release"
|
PublicEvent Event = "public"
|
||||||
RepositoryEvent Event = "repository"
|
PullRequestEvent Event = "pull_request"
|
||||||
StatusEvent Event = "status"
|
PullRequestReviewEvent Event = "pull_request_review"
|
||||||
TeamEvent Event = "team"
|
PullRequestReviewCommentEvent Event = "pull_request_review_comment"
|
||||||
TeamAddEvent Event = "team_add"
|
PushEvent Event = "push"
|
||||||
WatchEvent Event = "watch"
|
ReleaseEvent Event = "release"
|
||||||
|
RepositoryEvent Event = "repository"
|
||||||
|
RepositoryVulnerabilityAlertEvent Event = "repository_vulnerability_alert"
|
||||||
|
SecurityAdvisoryEvent Event = "security_advisory"
|
||||||
|
StatusEvent Event = "status"
|
||||||
|
TeamEvent Event = "team"
|
||||||
|
TeamAddEvent Event = "team_add"
|
||||||
|
WatchEvent Event = "watch"
|
||||||
)
|
)
|
||||||
|
|
||||||
// EventSubtype defines a GitHub Hook Event subtype
|
// EventSubtype defines a GitHub Hook Event subtype
|
||||||
@@ -161,6 +168,14 @@ func (hook Webhook) Parse(r *http.Request, events ...Event) (interface{}, error)
|
|||||||
}
|
}
|
||||||
|
|
||||||
switch gitHubEvent {
|
switch gitHubEvent {
|
||||||
|
case CheckRunEvent:
|
||||||
|
var pl CheckRunPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case CheckSuiteEvent:
|
||||||
|
var pl CheckSuitePayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
case CommitCommentEvent:
|
case CommitCommentEvent:
|
||||||
var pl CommitCommentPayload
|
var pl CommitCommentPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
@@ -193,6 +208,10 @@ func (hook Webhook) Parse(r *http.Request, events ...Event) (interface{}, error)
|
|||||||
var pl InstallationPayload
|
var pl InstallationPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
case InstallationRepositoriesEvent, IntegrationInstallationRepositoriesEvent:
|
||||||
|
var pl InstallationRepositoriesPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
case IssueCommentEvent:
|
case IssueCommentEvent:
|
||||||
var pl IssueCommentPayload
|
var pl IssueCommentPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
@@ -213,6 +232,10 @@ func (hook Webhook) Parse(r *http.Request, events ...Event) (interface{}, error)
|
|||||||
var pl MembershipPayload
|
var pl MembershipPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
case MetaEvent:
|
||||||
|
var pl MetaPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
case MilestoneEvent:
|
case MilestoneEvent:
|
||||||
var pl MilestonePayload
|
var pl MilestonePayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
@@ -273,6 +296,14 @@ func (hook Webhook) Parse(r *http.Request, events ...Event) (interface{}, error)
|
|||||||
var pl RepositoryPayload
|
var pl RepositoryPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
case RepositoryVulnerabilityAlertEvent:
|
||||||
|
var pl RepositoryVulnerabilityAlertPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
|
case SecurityAdvisoryEvent:
|
||||||
|
var pl SecurityAdvisoryPayload
|
||||||
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
return pl, err
|
||||||
case StatusEvent:
|
case StatusEvent:
|
||||||
var pl StatusPayload
|
var pl StatusPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err = json.Unmarshal([]byte(payload), &pl)
|
||||||
|
|||||||
@@ -133,6 +133,26 @@ func TestWebhooks(t *testing.T) {
|
|||||||
filename string
|
filename string
|
||||||
headers http.Header
|
headers http.Header
|
||||||
}{
|
}{
|
||||||
|
{
|
||||||
|
name: "CheckRunEvent",
|
||||||
|
event: CheckRunEvent,
|
||||||
|
typ: CheckRunPayload{},
|
||||||
|
filename: "../testdata/github/check-run.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Github-Event": []string{"check_run"},
|
||||||
|
"X-Hub-Signature": []string{"sha1=229f4920493b455398168cd86dc6b366064bdf3f"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "CheckSuiteEvent",
|
||||||
|
event: CheckSuiteEvent,
|
||||||
|
typ: CheckSuitePayload{},
|
||||||
|
filename: "../testdata/github/check-suite.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Github-Event": []string{"check_suite"},
|
||||||
|
"X-Hub-Signature": []string{"sha1=250ad5a340f8d91e67dc5682342f3190fd2006a1"},
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "CommitCommentEvent",
|
name: "CommitCommentEvent",
|
||||||
event: CommitCommentEvent,
|
event: CommitCommentEvent,
|
||||||
@@ -213,6 +233,16 @@ func TestWebhooks(t *testing.T) {
|
|||||||
"X-Hub-Signature": []string{"sha1=2058cf6cc28570710afbc638e669f5c67305a2db"},
|
"X-Hub-Signature": []string{"sha1=2058cf6cc28570710afbc638e669f5c67305a2db"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "InstallationRepositoriesEvent",
|
||||||
|
event: InstallationRepositoriesEvent,
|
||||||
|
typ: InstallationRepositoriesPayload{},
|
||||||
|
filename: "../testdata/github/installation-repositories.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Github-Event": []string{"installation_repositories"},
|
||||||
|
"X-Hub-Signature": []string{"sha1=c587fbd9dd169db8ae592b3bcc80b08e2e6f4f45"},
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "IntegrationInstallationEvent",
|
name: "IntegrationInstallationEvent",
|
||||||
event: IntegrationInstallationEvent,
|
event: IntegrationInstallationEvent,
|
||||||
@@ -223,6 +253,16 @@ func TestWebhooks(t *testing.T) {
|
|||||||
"X-Hub-Signature": []string{"sha1=bb2769f05f1a11af3a1edf8f9fac11bae7402a1e"},
|
"X-Hub-Signature": []string{"sha1=bb2769f05f1a11af3a1edf8f9fac11bae7402a1e"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "IntegrationInstallationRepositoriesEvent",
|
||||||
|
event: IntegrationInstallationRepositoriesEvent,
|
||||||
|
typ: InstallationRepositoriesPayload{},
|
||||||
|
filename: "../testdata/github/integration-installation-repositories.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Github-Event": []string{"integration_installation_repositories"},
|
||||||
|
"X-Hub-Signature": []string{"sha1=2f00a982574188342c2894eb9d1b1e93434687fb"},
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "IssueCommentEvent",
|
name: "IssueCommentEvent",
|
||||||
event: IssueCommentEvent,
|
event: IssueCommentEvent,
|
||||||
@@ -423,6 +463,26 @@ func TestWebhooks(t *testing.T) {
|
|||||||
"X-Hub-Signature": []string{"sha1=df442a8af41edd2d42ccdd997938d1d111b0f94e"},
|
"X-Hub-Signature": []string{"sha1=df442a8af41edd2d42ccdd997938d1d111b0f94e"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "RepositoryVulnerabilityAlertEvent",
|
||||||
|
event: RepositoryVulnerabilityAlertEvent,
|
||||||
|
typ: RepositoryVulnerabilityAlertPayload{},
|
||||||
|
filename: "../testdata/github/repository-vulnerability-alert.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Github-Event": []string{"repository_vulnerability_alert"},
|
||||||
|
"X-Hub-Signature": []string{"sha1=c42c0649e7e06413bcd756763edbab48dff400db"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "SecurityAdvisoryEvent",
|
||||||
|
event: SecurityAdvisoryEvent,
|
||||||
|
typ: SecurityAdvisoryPayload{},
|
||||||
|
filename: "../testdata/github/security-advisory.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Github-Event": []string{"security_advisory"},
|
||||||
|
"X-Hub-Signature": []string{"sha1=6a71f24fa69f55469843a91dc3a5c3e29714a565"},
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "StatusEvent",
|
name: "StatusEvent",
|
||||||
event: StatusEvent,
|
event: StatusEvent,
|
||||||
|
|||||||
+1070
-74
File diff suppressed because it is too large
Load Diff
+56
-23
@@ -17,6 +17,7 @@ var (
|
|||||||
ErrGitLabTokenVerificationFailed = errors.New("X-Gitlab-Token validation failed")
|
ErrGitLabTokenVerificationFailed = errors.New("X-Gitlab-Token validation failed")
|
||||||
ErrEventNotFound = errors.New("event not defined to be parsed")
|
ErrEventNotFound = errors.New("event not defined to be parsed")
|
||||||
ErrParsingPayload = errors.New("error parsing payload")
|
ErrParsingPayload = errors.New("error parsing payload")
|
||||||
|
ErrParsingSystemPayload = errors.New("error parsing system payload")
|
||||||
// ErrHMACVerificationFailed = errors.New("HMAC verification failed")
|
// ErrHMACVerificationFailed = errors.New("HMAC verification failed")
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -31,6 +32,12 @@ const (
|
|||||||
WikiPageEvents Event = "Wiki Page Hook"
|
WikiPageEvents Event = "Wiki Page Hook"
|
||||||
PipelineEvents Event = "Pipeline Hook"
|
PipelineEvents Event = "Pipeline Hook"
|
||||||
BuildEvents Event = "Build Hook"
|
BuildEvents Event = "Build Hook"
|
||||||
|
JobEvents Event = "Job Hook"
|
||||||
|
SystemHookEvents Event = "System Hook"
|
||||||
|
|
||||||
|
objectPush string = "push"
|
||||||
|
objectTag string = "tag_push"
|
||||||
|
objectMergeRequest string = "merge_request"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Option is a configuration option for the webhook
|
// Option is a configuration option for the webhook
|
||||||
@@ -55,7 +62,7 @@ type Webhook struct {
|
|||||||
secret string
|
secret string
|
||||||
}
|
}
|
||||||
|
|
||||||
// Event defines a GitHub hook event type
|
// Event defines a GitLab hook event type by the X-Gitlab-Event Header
|
||||||
type Event string
|
type Event string
|
||||||
|
|
||||||
// New creates and returns a WebHook instance denoted by the Provider type
|
// New creates and returns a WebHook instance denoted by the Provider type
|
||||||
@@ -83,6 +90,14 @@ func (hook Webhook) Parse(r *http.Request, events ...Event) (interface{}, error)
|
|||||||
return nil, ErrInvalidHTTPMethod
|
return nil, ErrInvalidHTTPMethod
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If we have a Secret set, we should check the MAC
|
||||||
|
if len(hook.secret) > 0 {
|
||||||
|
signature := r.Header.Get("X-Gitlab-Token")
|
||||||
|
if signature != hook.secret {
|
||||||
|
return nil, ErrGitLabTokenVerificationFailed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
event := r.Header.Get("X-Gitlab-Event")
|
event := r.Header.Get("X-Gitlab-Event")
|
||||||
if len(event) == 0 {
|
if len(event) == 0 {
|
||||||
return nil, ErrMissingGitLabEventHeader
|
return nil, ErrMissingGitLabEventHeader
|
||||||
@@ -90,6 +105,16 @@ func (hook Webhook) Parse(r *http.Request, events ...Event) (interface{}, error)
|
|||||||
|
|
||||||
gitLabEvent := Event(event)
|
gitLabEvent := Event(event)
|
||||||
|
|
||||||
|
payload, err := ioutil.ReadAll(r.Body)
|
||||||
|
if err != nil || len(payload) == 0 {
|
||||||
|
return nil, ErrParsingPayload
|
||||||
|
}
|
||||||
|
|
||||||
|
return eventParsing(gitLabEvent, events, payload)
|
||||||
|
}
|
||||||
|
|
||||||
|
func eventParsing(gitLabEvent Event, events []Event, payload []byte) (interface{}, error) {
|
||||||
|
|
||||||
var found bool
|
var found bool
|
||||||
for _, evt := range events {
|
for _, evt := range events {
|
||||||
if evt == gitLabEvent {
|
if evt == gitLabEvent {
|
||||||
@@ -102,64 +127,72 @@ func (hook Webhook) Parse(r *http.Request, events ...Event) (interface{}, error)
|
|||||||
return nil, ErrEventNotFound
|
return nil, ErrEventNotFound
|
||||||
}
|
}
|
||||||
|
|
||||||
payload, err := ioutil.ReadAll(r.Body)
|
|
||||||
if err != nil || len(payload) == 0 {
|
|
||||||
return nil, ErrParsingPayload
|
|
||||||
}
|
|
||||||
|
|
||||||
// If we have a Secret set, we should check the MAC
|
|
||||||
if len(hook.secret) > 0 {
|
|
||||||
signature := r.Header.Get("X-Gitlab-Token")
|
|
||||||
if signature != hook.secret {
|
|
||||||
return nil, ErrGitLabTokenVerificationFailed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
switch gitLabEvent {
|
switch gitLabEvent {
|
||||||
case PushEvents:
|
case PushEvents:
|
||||||
var pl PushEventPayload
|
var pl PushEventPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err := json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
|
||||||
case TagEvents:
|
case TagEvents:
|
||||||
var pl TagEventPayload
|
var pl TagEventPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err := json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
|
||||||
case ConfidentialIssuesEvents:
|
case ConfidentialIssuesEvents:
|
||||||
var pl ConfidentialIssueEventPayload
|
var pl ConfidentialIssueEventPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err := json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
|
||||||
case IssuesEvents:
|
case IssuesEvents:
|
||||||
var pl IssueEventPayload
|
var pl IssueEventPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err := json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
|
||||||
case CommentEvents:
|
case CommentEvents:
|
||||||
var pl CommentEventPayload
|
var pl CommentEventPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err := json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
|
||||||
case MergeRequestEvents:
|
case MergeRequestEvents:
|
||||||
var pl MergeRequestEventPayload
|
var pl MergeRequestEventPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err := json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
|
||||||
case WikiPageEvents:
|
case WikiPageEvents:
|
||||||
var pl WikiPageEventPayload
|
var pl WikiPageEventPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err := json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
|
||||||
case PipelineEvents:
|
case PipelineEvents:
|
||||||
var pl PipelineEventPayload
|
var pl PipelineEventPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err := json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
|
||||||
case BuildEvents:
|
case BuildEvents:
|
||||||
var pl BuildEventPayload
|
var pl BuildEventPayload
|
||||||
err = json.Unmarshal([]byte(payload), &pl)
|
err := json.Unmarshal([]byte(payload), &pl)
|
||||||
return pl, err
|
return pl, err
|
||||||
|
case JobEvents:
|
||||||
|
var p1 JobEventPayload
|
||||||
|
err := json.Unmarshal([]byte(payload), &p1)
|
||||||
|
return p1, err
|
||||||
|
|
||||||
|
case SystemHookEvents:
|
||||||
|
var pl SystemHookPayload
|
||||||
|
err := json.Unmarshal([]byte(payload), &pl)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
switch pl.ObjectKind {
|
||||||
|
case objectPush:
|
||||||
|
return eventParsing(PushEvents, events, payload)
|
||||||
|
case objectTag:
|
||||||
|
return eventParsing(TagEvents, events, payload)
|
||||||
|
case objectMergeRequest:
|
||||||
|
return eventParsing(MergeRequestEvents, events, payload)
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unknown system hook event %s", gitLabEvent)
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
return nil, fmt.Errorf("unknown event %s", gitLabEvent)
|
return nil, fmt.Errorf("unknown event %s", gitLabEvent)
|
||||||
}
|
}
|
||||||
|
|||||||
+70
-4
@@ -2,15 +2,13 @@ package gitlab
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"io"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
|
||||||
|
|
||||||
"io"
|
|
||||||
|
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
@@ -233,6 +231,15 @@ func TestWebhooks(t *testing.T) {
|
|||||||
"X-Gitlab-Event": []string{"Build Hook"},
|
"X-Gitlab-Event": []string{"Build Hook"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "JobEvent",
|
||||||
|
event: JobEvents,
|
||||||
|
typ: JobEventPayload{},
|
||||||
|
filename: "../testdata/gitlab/job-event.json",
|
||||||
|
headers: http.Header{
|
||||||
|
"X-Gitlab-Event": []string{"Job Hook"},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
@@ -266,3 +273,62 @@ func TestWebhooks(t *testing.T) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestSystemHooks(t *testing.T) {
|
||||||
|
assert := require.New(t)
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
event Event
|
||||||
|
typ interface{}
|
||||||
|
filename string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "PushEvent",
|
||||||
|
event: PushEvents,
|
||||||
|
typ: PushEventPayload{},
|
||||||
|
filename: "../testdata/gitlab/push-event.json",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "TagEvent",
|
||||||
|
event: TagEvents,
|
||||||
|
typ: TagEventPayload{},
|
||||||
|
filename: "../testdata/gitlab/tag-event.json",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "MergeRequestEvent",
|
||||||
|
event: MergeRequestEvents,
|
||||||
|
typ: MergeRequestEventPayload{},
|
||||||
|
filename: "../testdata/gitlab/merge-request-event.json",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
for _, tt := range tests {
|
||||||
|
tc := tt
|
||||||
|
client := &http.Client{}
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
payload, err := os.Open(tc.filename)
|
||||||
|
assert.NoError(err)
|
||||||
|
defer func() {
|
||||||
|
_ = payload.Close()
|
||||||
|
}()
|
||||||
|
|
||||||
|
var parseError error
|
||||||
|
var results interface{}
|
||||||
|
server := newServer(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
results, parseError = hook.Parse(r, SystemHookEvents, tc.event)
|
||||||
|
})
|
||||||
|
defer server.Close()
|
||||||
|
req, err := http.NewRequest(http.MethodPost, server.URL+path, payload)
|
||||||
|
assert.NoError(err)
|
||||||
|
req.Header.Set("Content-Type", "application/json")
|
||||||
|
req.Header.Set("X-Gitlab-Token", "sampleToken!")
|
||||||
|
req.Header.Set("X-Gitlab-Event", "System Hook")
|
||||||
|
|
||||||
|
resp, err := client.Do(req)
|
||||||
|
assert.NoError(err)
|
||||||
|
assert.Equal(http.StatusOK, resp.StatusCode)
|
||||||
|
assert.NoError(parseError)
|
||||||
|
assert.Equal(reflect.TypeOf(tc.typ), reflect.TypeOf(results))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
+108
-49
@@ -109,7 +109,7 @@ type PipelineEventPayload struct {
|
|||||||
Project Project `json:"project"`
|
Project Project `json:"project"`
|
||||||
Commit Commit `json:"commit"`
|
Commit Commit `json:"commit"`
|
||||||
ObjectAttributes ObjectAttributes `json:"object_attributes"`
|
ObjectAttributes ObjectAttributes `json:"object_attributes"`
|
||||||
Builds []Build `json:"builds"`
|
Jobs []Job `json:"jobs"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// CommentEventPayload contains the information for GitLab's comment event
|
// CommentEventPayload contains the information for GitLab's comment event
|
||||||
@@ -148,6 +148,34 @@ type BuildEventPayload struct {
|
|||||||
Repository Repository `json:"repository"`
|
Repository Repository `json:"repository"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// JobEventPayload contains the information for GitLab's Job status change
|
||||||
|
type JobEventPayload struct {
|
||||||
|
ObjectKind string `json:"object_kind"`
|
||||||
|
Ref string `json:"ref"`
|
||||||
|
Tag bool `json:"tag"`
|
||||||
|
BeforeSHA string `json:"before_sha"`
|
||||||
|
SHA string `json:"sha"`
|
||||||
|
JobID int64 `json:"Job_id"`
|
||||||
|
JobName string `json:"Job_name"`
|
||||||
|
JobStage string `json:"Job_stage"`
|
||||||
|
JobStatus string `json:"Job_status"`
|
||||||
|
JobStartedAt customTime `json:"Job_started_at"`
|
||||||
|
JobFinishedAt customTime `json:"Job_finished_at"`
|
||||||
|
JobDuration int64 `json:"Job_duration"`
|
||||||
|
Job bool `json:"Job"`
|
||||||
|
JobFailureReason string `json:"job_failure_reason"`
|
||||||
|
ProjectID int64 `json:"project_id"`
|
||||||
|
ProjectName string `json:"project_name"`
|
||||||
|
User User `json:"user"`
|
||||||
|
Commit BuildCommit `json:"commit"`
|
||||||
|
Repository Repository `json:"repository"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SystemHookPayload contains the ObjectKind to match with real hook events
|
||||||
|
type SystemHookPayload struct {
|
||||||
|
ObjectKind string `json:"object_kind"`
|
||||||
|
}
|
||||||
|
|
||||||
// Issue contains all of the GitLab issue information
|
// Issue contains all of the GitLab issue information
|
||||||
type Issue struct {
|
type Issue struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
@@ -165,8 +193,8 @@ type Issue struct {
|
|||||||
IID int64 `json:"iid"`
|
IID int64 `json:"iid"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build contains all of the GitLab build information
|
// Job contains all of the GitLab job information
|
||||||
type Build struct {
|
type Job struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
Stage string `json:"stage"`
|
Stage string `json:"stage"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
@@ -177,10 +205,18 @@ type Build struct {
|
|||||||
When string `json:"when"`
|
When string `json:"when"`
|
||||||
Manual bool `json:"manual"`
|
Manual bool `json:"manual"`
|
||||||
User User `json:"user"`
|
User User `json:"user"`
|
||||||
Runner string `json:"runner"`
|
Runner Runner `json:"runner"`
|
||||||
ArtifactsFile ArtifactsFile `json:"artifactsfile"`
|
ArtifactsFile ArtifactsFile `json:"artifactsfile"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Runner represents a runner agent
|
||||||
|
type Runner struct {
|
||||||
|
ID int64 `json:"id"`
|
||||||
|
Description string `json:"description"`
|
||||||
|
Active bool `json:"active"`
|
||||||
|
IsShared bool `json:"is_shared"`
|
||||||
|
}
|
||||||
|
|
||||||
// ArtifactsFile contains all of the GitLab artifact information
|
// ArtifactsFile contains all of the GitLab artifact information
|
||||||
type ArtifactsFile struct {
|
type ArtifactsFile struct {
|
||||||
Filename string `json:"filename"`
|
Filename string `json:"filename"`
|
||||||
@@ -271,51 +307,74 @@ type Repository struct {
|
|||||||
|
|
||||||
// ObjectAttributes contains all of the GitLab object attributes information
|
// ObjectAttributes contains all of the GitLab object attributes information
|
||||||
type ObjectAttributes struct {
|
type ObjectAttributes struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
AssigneeID int64 `json:"assignee_id"`
|
AssigneeID int64 `json:"assignee_id"`
|
||||||
AuthorID int64 `json:"author_id"`
|
AuthorID int64 `json:"author_id"`
|
||||||
ProjectID int64 `json:"project_id"`
|
ProjectID int64 `json:"project_id"`
|
||||||
CreatedAt customTime `json:"created_at"`
|
CreatedAt customTime `json:"created_at"`
|
||||||
UpdatedAt customTime `json:"updated_at"`
|
UpdatedAt customTime `json:"updated_at"`
|
||||||
Position int64 `json:"position"`
|
ChangePosition Position `json:"change_position"`
|
||||||
BranchName string `json:"branch_name"`
|
OriginalPosition Position `json:"original_position"`
|
||||||
Description string `json:"description"`
|
Position Position `json:"position"`
|
||||||
MilestoneID int64 `json:"milestone_id"`
|
BranchName string `json:"branch_name"`
|
||||||
State string `json:"state"`
|
Description string `json:"description"`
|
||||||
IID int64 `json:"iid"`
|
MilestoneID int64 `json:"milestone_id"`
|
||||||
URL string `json:"url"`
|
State string `json:"state"`
|
||||||
Action string `json:"action"`
|
IID int64 `json:"iid"`
|
||||||
TargetBranch string `json:"target_branch"`
|
URL string `json:"url"`
|
||||||
SourceBranch string `json:"source_branch"`
|
Action string `json:"action"`
|
||||||
SourceProjectID int64 `json:"source_project_id"`
|
TargetBranch string `json:"target_branch"`
|
||||||
TargetProjectID int64 `json:"target_project_id"`
|
SourceBranch string `json:"source_branch"`
|
||||||
StCommits string `json:"st_commits"`
|
SourceProjectID int64 `json:"source_project_id"`
|
||||||
MergeStatus string `json:"merge_status"`
|
TargetProjectID int64 `json:"target_project_id"`
|
||||||
Content string `json:"content"`
|
StCommits string `json:"st_commits"`
|
||||||
Format string `json:"format"`
|
MergeStatus string `json:"merge_status"`
|
||||||
Message string `json:"message"`
|
Content string `json:"content"`
|
||||||
Slug string `json:"slug"`
|
Format string `json:"format"`
|
||||||
Ref string `json:"ref"`
|
Message string `json:"message"`
|
||||||
Tag bool `json:"tag"`
|
Slug string `json:"slug"`
|
||||||
SHA string `json:"sha"`
|
Ref string `json:"ref"`
|
||||||
BeforeSHA string `json:"before_sha"`
|
Tag bool `json:"tag"`
|
||||||
Status string `json:"status"`
|
SHA string `json:"sha"`
|
||||||
Stages []string `json:"stages"`
|
BeforeSHA string `json:"before_sha"`
|
||||||
Duration int64 `json:"duration"`
|
Status string `json:"status"`
|
||||||
Note string `json:"note"`
|
Stages []string `json:"stages"`
|
||||||
NotebookType string `json:"noteable_type"`
|
Duration int64 `json:"duration"`
|
||||||
At customTime `json:"attachment"`
|
Note string `json:"note"`
|
||||||
LineCode string `json:"line_code"`
|
NotebookType string `json:"noteable_type"`
|
||||||
CommitID string `json:"commit_id"`
|
At customTime `json:"attachment"`
|
||||||
NoteableID int64 `json:"noteable_id"`
|
LineCode string `json:"line_code"`
|
||||||
System bool `json:"system"`
|
CommitID string `json:"commit_id"`
|
||||||
WorkInProgress bool `json:"work_in_progress"`
|
NoteableID int64 `json:"noteable_id"`
|
||||||
StDiffs []StDiff `json:"st_diffs"`
|
System bool `json:"system"`
|
||||||
Source Source `json:"source"`
|
WorkInProgress bool `json:"work_in_progress"`
|
||||||
Target Target `json:"target"`
|
StDiffs []StDiff `json:"st_diffs"`
|
||||||
LastCommit LastCommit `json:"last_commit"`
|
Source Source `json:"source"`
|
||||||
Assignee Assignee `json:"assignee"`
|
Target Target `json:"target"`
|
||||||
|
LastCommit LastCommit `json:"last_commit"`
|
||||||
|
Assignee Assignee `json:"assignee"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Position defines a specific location, identified by paths line numbers and
|
||||||
|
// image coordinates, within a specific diff, identified by start, head and
|
||||||
|
// base commit ids.
|
||||||
|
//
|
||||||
|
// Text position will have: new_line and old_line
|
||||||
|
// Image position will have: width, height, x, y
|
||||||
|
type Position struct {
|
||||||
|
BaseSHA string `json:"base_sha"`
|
||||||
|
StartSHA string `json:"start_sha"`
|
||||||
|
HeadSHA string `json:"head_sha"`
|
||||||
|
OldPath string `json:"old_path"`
|
||||||
|
NewPath string `json:"new_path"`
|
||||||
|
PositionType string `json:"position_type"`
|
||||||
|
OldLine int64 `json:"old_line"`
|
||||||
|
NewLine int64 `json:"new_line"`
|
||||||
|
Width int64 `json:"width"`
|
||||||
|
Height int64 `json:"height"`
|
||||||
|
X int64 `json:"x"`
|
||||||
|
Y int64 `json:"y"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// MergeRequest contains all of the GitLab merge request information
|
// MergeRequest contains all of the GitLab merge request information
|
||||||
|
|||||||
+213
@@ -0,0 +1,213 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:comment:added",
|
||||||
|
"date": "2019-03-01T10:08:35+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 2,
|
||||||
|
"version": 20,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "OPEN",
|
||||||
|
"open": true,
|
||||||
|
"closed": false,
|
||||||
|
"createdDate": 1550436762919,
|
||||||
|
"updatedDate": 1551366080055,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "50a8ee1fae3abf75738a85f9039b4b2de4947174",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "038e7b67735e54f6de8f1c5d533c6751df524f6c",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/2"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"comment": {
|
||||||
|
"properties": {
|
||||||
|
"repositoryId": 4
|
||||||
|
},
|
||||||
|
"id": 167,
|
||||||
|
"version": 0,
|
||||||
|
"text": "test",
|
||||||
|
"author": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"createdDate": 1551431315592,
|
||||||
|
"updatedDate": 1551431315592,
|
||||||
|
"comments": [],
|
||||||
|
"tasks": []
|
||||||
|
},
|
||||||
|
"commentParentId": 164
|
||||||
|
}
|
||||||
+210
@@ -0,0 +1,210 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:comment:deleted",
|
||||||
|
"date": "2019-03-01T10:09:09+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 2,
|
||||||
|
"version": 20,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "OPEN",
|
||||||
|
"open": true,
|
||||||
|
"closed": false,
|
||||||
|
"createdDate": 1550436762919,
|
||||||
|
"updatedDate": 1551366080055,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "50a8ee1fae3abf75738a85f9039b4b2de4947174",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "038e7b67735e54f6de8f1c5d533c6751df524f6c",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/2"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"comment": {
|
||||||
|
"id": 166,
|
||||||
|
"version": 0,
|
||||||
|
"text": "test",
|
||||||
|
"author": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"createdDate": 1551431209893,
|
||||||
|
"updatedDate": 1551431209893,
|
||||||
|
"comments": [],
|
||||||
|
"tasks": []
|
||||||
|
},
|
||||||
|
"commentParentId": 165
|
||||||
|
}
|
||||||
+213
@@ -0,0 +1,213 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:comment:edited",
|
||||||
|
"date": "2019-03-01T10:06:11+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 2,
|
||||||
|
"version": 20,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "OPEN",
|
||||||
|
"open": true,
|
||||||
|
"closed": false,
|
||||||
|
"createdDate": 1550436762919,
|
||||||
|
"updatedDate": 1551366080055,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "50a8ee1fae3abf75738a85f9039b4b2de4947174",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "038e7b67735e54f6de8f1c5d533c6751df524f6c",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/2"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"comment": {
|
||||||
|
"properties": {
|
||||||
|
"repositoryId": 4
|
||||||
|
},
|
||||||
|
"id": 165,
|
||||||
|
"version": 3,
|
||||||
|
"text": "yada edit comment",
|
||||||
|
"author": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"createdDate": 1551430363669,
|
||||||
|
"updatedDate": 1551431171528,
|
||||||
|
"comments": [],
|
||||||
|
"tasks": []
|
||||||
|
},
|
||||||
|
"previousComment": "yada yada yada"
|
||||||
|
}
|
||||||
+185
@@ -0,0 +1,185 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:declined",
|
||||||
|
"date": "2019-03-01T10:12:35+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 2,
|
||||||
|
"version": 23,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "DECLINED",
|
||||||
|
"open": false,
|
||||||
|
"closed": true,
|
||||||
|
"createdDate": 1550436762919,
|
||||||
|
"updatedDate": 1551431555605,
|
||||||
|
"closedDate": 1551431555605,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "50a8ee1fae3abf75738a85f9039b4b2de4947174",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "038e7b67735e54f6de8f1c5d533c6751df524f6c",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/2"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+184
@@ -0,0 +1,184 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:deleted",
|
||||||
|
"date": "2019-03-01T10:17:10+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 2,
|
||||||
|
"version": 26,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "OPEN",
|
||||||
|
"open": true,
|
||||||
|
"closed": false,
|
||||||
|
"createdDate": 1550436762919,
|
||||||
|
"updatedDate": 1551431770064,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "50a8ee1fae3abf75738a85f9039b4b2de4947174",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "038e7b67735e54f6de8f1c5d533c6751df524f6c",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/2"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+214
@@ -0,0 +1,214 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:merged",
|
||||||
|
"date": "2019-03-01T10:37:14+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 5,
|
||||||
|
"version": 2,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "MERGED",
|
||||||
|
"open": false,
|
||||||
|
"closed": true,
|
||||||
|
"createdDate": 1551432675860,
|
||||||
|
"updatedDate": 1551433034286,
|
||||||
|
"closedDate": 1551433034286,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "cde6c45a4210afe81638aa1f3aa960d633c66a90",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [
|
||||||
|
{
|
||||||
|
"user": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lastReviewedCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"role": "REVIEWER",
|
||||||
|
"approved": true,
|
||||||
|
"status": "APPROVED"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"participants": [],
|
||||||
|
"properties": {
|
||||||
|
"mergeCommit": {
|
||||||
|
"displayId": "cbf26be7bfc",
|
||||||
|
"id": "cbf26be7bfc8394906abbd571498fb8d28888b58"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+215
@@ -0,0 +1,215 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:modified",
|
||||||
|
"date": "2019-03-01T10:19:48+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 3,
|
||||||
|
"version": 1,
|
||||||
|
"title": "Feature/wip",
|
||||||
|
"description": "Update README",
|
||||||
|
"state": "OPEN",
|
||||||
|
"open": true,
|
||||||
|
"closed": false,
|
||||||
|
"createdDate": 1551431949625,
|
||||||
|
"updatedDate": 1551431988769,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "591f702354b3abf1faaca4d23811620d1b2ac984",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bibucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "038e7b67735e54f6de8f1c5d533c6751df524f6c",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bibucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [
|
||||||
|
{
|
||||||
|
"user": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "REVIEWER",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bibucket.local/users/gopher/repos/webhook-test/pull-requests/3"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"previousTitle": "Feature/wip",
|
||||||
|
"previousDescription": "wip",
|
||||||
|
"previousTarget": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"type": "BRANCH",
|
||||||
|
"latestCommit": "038e7b67735e54f6de8f1c5d533c6751df524f6c",
|
||||||
|
"latestChangeset": "038e7b67735e54f6de8f1c5d533c6751df524f6c"
|
||||||
|
}
|
||||||
|
}
|
||||||
+206
@@ -0,0 +1,206 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:opened",
|
||||||
|
"date": "2019-03-01T10:31:15+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 5,
|
||||||
|
"version": 0,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "OPEN",
|
||||||
|
"open": true,
|
||||||
|
"closed": false,
|
||||||
|
"createdDate": 1551432675860,
|
||||||
|
"updatedDate": 1551432675860,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "cde6c45a4210afe81638aa1f3aa960d633c66a90",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [
|
||||||
|
{
|
||||||
|
"user": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "REVIEWER",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+230
@@ -0,0 +1,230 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:reviewer:approved",
|
||||||
|
"date": "2019-03-01T10:35:38+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 5,
|
||||||
|
"version": 0,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "OPEN",
|
||||||
|
"open": true,
|
||||||
|
"closed": false,
|
||||||
|
"createdDate": 1551432675860,
|
||||||
|
"updatedDate": 1551432675860,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "cde6c45a4210afe81638aa1f3aa960d633c66a90",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [
|
||||||
|
{
|
||||||
|
"user": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lastReviewedCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"role": "REVIEWER",
|
||||||
|
"approved": true,
|
||||||
|
"status": "APPROVED"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"participant": {
|
||||||
|
"user": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lastReviewedCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"role": "REVIEWER",
|
||||||
|
"approved": true,
|
||||||
|
"status": "APPROVED"
|
||||||
|
},
|
||||||
|
"previousStatus": "NEEDS_WORK"
|
||||||
|
}
|
||||||
@@ -0,0 +1,230 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:reviewer:needs_work",
|
||||||
|
"date": "2019-03-01T10:34:53+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 5,
|
||||||
|
"version": 0,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "OPEN",
|
||||||
|
"open": true,
|
||||||
|
"closed": false,
|
||||||
|
"createdDate": 1551432675860,
|
||||||
|
"updatedDate": 1551432675860,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "cde6c45a4210afe81638aa1f3aa960d633c66a90",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [
|
||||||
|
{
|
||||||
|
"user": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lastReviewedCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"role": "REVIEWER",
|
||||||
|
"approved": false,
|
||||||
|
"status": "NEEDS_WORK"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"participant": {
|
||||||
|
"user": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lastReviewedCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"role": "REVIEWER",
|
||||||
|
"approved": false,
|
||||||
|
"status": "NEEDS_WORK"
|
||||||
|
},
|
||||||
|
"previousStatus": "UNAPPROVED"
|
||||||
|
}
|
||||||
@@ -0,0 +1,230 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:reviewer:unapproved",
|
||||||
|
"date": "2019-03-01T10:34:15+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 5,
|
||||||
|
"version": 0,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "OPEN",
|
||||||
|
"open": true,
|
||||||
|
"closed": false,
|
||||||
|
"createdDate": 1551432675860,
|
||||||
|
"updatedDate": 1551432675860,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "cde6c45a4210afe81638aa1f3aa960d633c66a90",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [
|
||||||
|
{
|
||||||
|
"user": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lastReviewedCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"role": "REVIEWER",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"participant": {
|
||||||
|
"user": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lastReviewedCommit": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"role": "REVIEWER",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"previousStatus": "NEEDS_WORK"
|
||||||
|
}
|
||||||
+225
@@ -0,0 +1,225 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "pr:reviewer:updated",
|
||||||
|
"date": "2019-03-01T10:19:48+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pullRequest": {
|
||||||
|
"id": 3,
|
||||||
|
"version": 1,
|
||||||
|
"title": "Update README",
|
||||||
|
"description": "yada yada yada",
|
||||||
|
"state": "OPEN",
|
||||||
|
"open": true,
|
||||||
|
"closed": false,
|
||||||
|
"createdDate": 1551431949625,
|
||||||
|
"updatedDate": 1551431988769,
|
||||||
|
"fromRef": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"latestCommit": "591f702354b3abf1faaca4d23811620d1b2ac984",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toRef": {
|
||||||
|
"id": "refs/heads/master",
|
||||||
|
"displayId": "master",
|
||||||
|
"latestCommit": "038e7b67735e54f6de8f1c5d533c6751df524f6c",
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locked": false,
|
||||||
|
"author": {
|
||||||
|
"user": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "AUTHOR",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
},
|
||||||
|
"reviewers": [
|
||||||
|
{
|
||||||
|
"user": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"role": "REVIEWER",
|
||||||
|
"approved": false,
|
||||||
|
"status": "UNAPPROVED"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"participants": [],
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/pull-requests/3"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"addedReviewers": [
|
||||||
|
{
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"removedReviewers": []
|
||||||
|
}
|
||||||
+105
@@ -0,0 +1,105 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "repo:comment:added",
|
||||||
|
"date": "2019-02-28T16:17:06+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"comment": {
|
||||||
|
"properties": {
|
||||||
|
"repositoryId": 4
|
||||||
|
},
|
||||||
|
"id": 146,
|
||||||
|
"version": 0,
|
||||||
|
"text": "test",
|
||||||
|
"author": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"createdDate": 1551367026162,
|
||||||
|
"updatedDate": 1551367026162,
|
||||||
|
"comments": [],
|
||||||
|
"tasks": []
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"commit": "038e7b67735e54f6de8f1c5d533c6751df524f6c"
|
||||||
|
}
|
||||||
+102
@@ -0,0 +1,102 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "repo:comment:deleted",
|
||||||
|
"date": "2019-03-01T09:40:51+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"comment": {
|
||||||
|
"id": 145,
|
||||||
|
"version": 1,
|
||||||
|
"text": "Test commit comment editing comment",
|
||||||
|
"author": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"createdDate": 1551366857036,
|
||||||
|
"updatedDate": 1551429525155,
|
||||||
|
"comments": [],
|
||||||
|
"tasks": []
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"commit": "038e7b67735e54f6de8f1c5d533c6751df524f6c"
|
||||||
|
}
|
||||||
+106
@@ -0,0 +1,106 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "repo:comment:edited",
|
||||||
|
"date": "2019-03-01T09:38:45+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"comment": {
|
||||||
|
"properties": {
|
||||||
|
"repositoryId": 4
|
||||||
|
},
|
||||||
|
"id": 145,
|
||||||
|
"version": 1,
|
||||||
|
"text": "Test commit comment editing comment",
|
||||||
|
"author": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"createdDate": 1551366857036,
|
||||||
|
"updatedDate": 1551429525155,
|
||||||
|
"comments": [],
|
||||||
|
"tasks": []
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"commit": "038e7b67735e54f6de8f1c5d533c6751df524f6c",
|
||||||
|
"previousComment": "Test commit comment"
|
||||||
|
}
|
||||||
+132
@@ -0,0 +1,132 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "repo:forked",
|
||||||
|
"date": "2019-02-28T16:12:04+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 124,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"origin": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "gopher@foo.bar",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"key": "~tux",
|
||||||
|
"id": 19,
|
||||||
|
"name": "Cain Piper",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "tux",
|
||||||
|
"emailAddress": "cain.piper@foo.bar",
|
||||||
|
"id": 2125,
|
||||||
|
"displayName": "Cain Piper",
|
||||||
|
"active": true,
|
||||||
|
"slug": "tux",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~tux/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~tux/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/tux/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+132
@@ -0,0 +1,132 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "repo:modified",
|
||||||
|
"date": "2019-02-28T16:08:46+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "foo@bar.se",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"old": {
|
||||||
|
"slug": "webhook-test-2",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test-2",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "foo@bar.se",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test-2/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"new": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "foo@bar.se",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
{
|
||||||
|
"eventKey": "repo:refs_changed",
|
||||||
|
"date": "2019-03-01T10:37:14+0100",
|
||||||
|
"actor": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "foo@bar.com",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"slug": "webhook-test",
|
||||||
|
"id": 4,
|
||||||
|
"name": "webhook-test",
|
||||||
|
"scmId": "git",
|
||||||
|
"state": "AVAILABLE",
|
||||||
|
"statusMessage": "Available",
|
||||||
|
"forkable": true,
|
||||||
|
"project": {
|
||||||
|
"key": "~gopher",
|
||||||
|
"id": 2,
|
||||||
|
"name": "Foo Bar",
|
||||||
|
"type": "PERSONAL",
|
||||||
|
"owner": {
|
||||||
|
"name": "gopher",
|
||||||
|
"emailAddress": "foo@bar.com",
|
||||||
|
"id": 3231,
|
||||||
|
"displayName": "Foo Bar",
|
||||||
|
"active": true,
|
||||||
|
"slug": "gopher",
|
||||||
|
"type": "NORMAL",
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"public": false,
|
||||||
|
"links": {
|
||||||
|
"clone": [
|
||||||
|
{
|
||||||
|
"href": "ssh://git@server.bitbucket.local:7999/~gopher/webhook-test.git",
|
||||||
|
"name": "ssh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/scm/~gopher/webhook-test.git",
|
||||||
|
"name": "http"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"self": [
|
||||||
|
{
|
||||||
|
"href": "https://server.bitbucket.local/users/gopher/repos/webhook-test/browse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"changes": [
|
||||||
|
{
|
||||||
|
"ref": {
|
||||||
|
"id": "refs/heads/feature/wip",
|
||||||
|
"displayId": "feature/wip",
|
||||||
|
"type": "BRANCH"
|
||||||
|
},
|
||||||
|
"refId": "refs/heads/feature/wip",
|
||||||
|
"fromHash": "32a0b8a740c2963c6f56bd8baf3dc05683d299e0",
|
||||||
|
"toHash": "0000000000000000000000000000000000000000",
|
||||||
|
"type": "DELETE"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
+4
-3
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+4
-3
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+4
-3
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+4
-3
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+24
-18
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -21,15 +22,16 @@
|
|||||||
"description":"Description of pull request",
|
"description":"Description of pull request",
|
||||||
"state":"OPEN|MERGED|DECLINED",
|
"state":"OPEN|MERGED|DECLINED",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -93,15 +95,16 @@
|
|||||||
},
|
},
|
||||||
"participants":[
|
"participants":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -111,15 +114,16 @@
|
|||||||
],
|
],
|
||||||
"reviewers":[
|
"reviewers":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -129,15 +133,16 @@
|
|||||||
],
|
],
|
||||||
"close_source_branch":true,
|
"close_source_branch":true,
|
||||||
"closed_by":{
|
"closed_by":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -177,15 +182,16 @@
|
|||||||
"approval":{
|
"approval":{
|
||||||
"date":"2015-04-06T16:34:59.195330+00:00",
|
"date":"2015-04-06T16:34:59.195330+00:00",
|
||||||
"user":{
|
"user":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+24
-18
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -21,15 +22,16 @@
|
|||||||
"description":"Description of pull request",
|
"description":"Description of pull request",
|
||||||
"state":"OPEN|MERGED|DECLINED",
|
"state":"OPEN|MERGED|DECLINED",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -93,15 +95,16 @@
|
|||||||
},
|
},
|
||||||
"participants":[
|
"participants":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -111,15 +114,16 @@
|
|||||||
],
|
],
|
||||||
"reviewers":[
|
"reviewers":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -129,15 +133,16 @@
|
|||||||
],
|
],
|
||||||
"close_source_branch":true,
|
"close_source_branch":true,
|
||||||
"closed_by":{
|
"closed_by":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -177,15 +182,16 @@
|
|||||||
"approval":{
|
"approval":{
|
||||||
"date":"2015-04-06T16:34:59.195330+00:00",
|
"date":"2015-04-06T16:34:59.195330+00:00",
|
||||||
"user":{
|
"user":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+20
-15
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -39,15 +40,16 @@
|
|||||||
"description":"Description of pull request",
|
"description":"Description of pull request",
|
||||||
"state":"OPEN|MERGED|DECLINED",
|
"state":"OPEN|MERGED|DECLINED",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -111,15 +113,16 @@
|
|||||||
},
|
},
|
||||||
"participants":[
|
"participants":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -129,15 +132,16 @@
|
|||||||
],
|
],
|
||||||
"reviewers":[
|
"reviewers":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -147,15 +151,16 @@
|
|||||||
],
|
],
|
||||||
"close_source_branch":true,
|
"close_source_branch":true,
|
||||||
"closed_by":{
|
"closed_by":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+20
-15
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -39,15 +40,16 @@
|
|||||||
"description":"Description of pull request",
|
"description":"Description of pull request",
|
||||||
"state":"OPEN|MERGED|DECLINED",
|
"state":"OPEN|MERGED|DECLINED",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -111,15 +113,16 @@
|
|||||||
},
|
},
|
||||||
"participants":[
|
"participants":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -129,15 +132,16 @@
|
|||||||
],
|
],
|
||||||
"reviewers":[
|
"reviewers":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -147,15 +151,16 @@
|
|||||||
],
|
],
|
||||||
"close_source_branch":true,
|
"close_source_branch":true,
|
||||||
"closed_by":{
|
"closed_by":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+20
-15
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -39,15 +40,16 @@
|
|||||||
"description":"Description of pull request",
|
"description":"Description of pull request",
|
||||||
"state":"OPEN|MERGED|DECLINED",
|
"state":"OPEN|MERGED|DECLINED",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -111,15 +113,16 @@
|
|||||||
},
|
},
|
||||||
"participants":[
|
"participants":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -129,15 +132,16 @@
|
|||||||
],
|
],
|
||||||
"reviewers":[
|
"reviewers":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -147,15 +151,16 @@
|
|||||||
],
|
],
|
||||||
"close_source_branch":true,
|
"close_source_branch":true,
|
||||||
"closed_by":{
|
"closed_by":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+20
-15
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -21,15 +22,16 @@
|
|||||||
"description":"Description of pull request",
|
"description":"Description of pull request",
|
||||||
"state":"OPEN|MERGED|DECLINED",
|
"state":"OPEN|MERGED|DECLINED",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -93,15 +95,16 @@
|
|||||||
},
|
},
|
||||||
"participants":[
|
"participants":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -111,15 +114,16 @@
|
|||||||
],
|
],
|
||||||
"reviewers":[
|
"reviewers":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -129,15 +133,16 @@
|
|||||||
],
|
],
|
||||||
"close_source_branch":true,
|
"close_source_branch":true,
|
||||||
"closed_by":{
|
"closed_by":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+20
-15
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -21,15 +22,16 @@
|
|||||||
"description":"Description of pull request",
|
"description":"Description of pull request",
|
||||||
"state":"OPEN|MERGED|DECLINED",
|
"state":"OPEN|MERGED|DECLINED",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -93,15 +95,16 @@
|
|||||||
},
|
},
|
||||||
"participants":[
|
"participants":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -111,15 +114,16 @@
|
|||||||
],
|
],
|
||||||
"reviewers":[
|
"reviewers":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -129,15 +133,16 @@
|
|||||||
],
|
],
|
||||||
"close_source_branch":true,
|
"close_source_branch":true,
|
||||||
"closed_by":{
|
"closed_by":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+18
-14
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -21,15 +22,16 @@
|
|||||||
"description":"Description of pull request",
|
"description":"Description of pull request",
|
||||||
"state":"OPEN|MERGED|DECLINED",
|
"state":"OPEN|MERGED|DECLINED",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -98,10 +100,10 @@
|
|||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -111,15 +113,16 @@
|
|||||||
],
|
],
|
||||||
"reviewers":[
|
"reviewers":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -129,15 +132,16 @@
|
|||||||
],
|
],
|
||||||
"close_source_branch":true,
|
"close_source_branch":true,
|
||||||
"closed_by":{
|
"closed_by":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+20
-15
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -21,15 +22,16 @@
|
|||||||
"description":"Description of pull request",
|
"description":"Description of pull request",
|
||||||
"state":"OPEN|MERGED|DECLINED",
|
"state":"OPEN|MERGED|DECLINED",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -93,15 +95,16 @@
|
|||||||
},
|
},
|
||||||
"participants":[
|
"participants":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -111,15 +114,16 @@
|
|||||||
],
|
],
|
||||||
"reviewers":[
|
"reviewers":[
|
||||||
{
|
{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -129,15 +133,16 @@
|
|||||||
],
|
],
|
||||||
"close_source_branch":true,
|
"close_source_branch":true,
|
||||||
"closed_by":{
|
"closed_by":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+4
-3
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+4
-3
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
Vendored
+4
-3
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
Vendored
+16
-12
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"actor":{
|
"actor":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -43,15 +44,16 @@
|
|||||||
"type":"commit",
|
"type":"commit",
|
||||||
"hash":"709d658dc5b6d6afcd46049c2f332ee3f515a67d",
|
"hash":"709d658dc5b6d6afcd46049c2f332ee3f515a67d",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -102,15 +104,16 @@
|
|||||||
"type":"commit",
|
"type":"commit",
|
||||||
"hash":"1e65c05c1d5171631d92438a13901ca7dae9618c",
|
"hash":"1e65c05c1d5171631d92438a13901ca7dae9618c",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -174,15 +177,16 @@
|
|||||||
"type":"commit",
|
"type":"commit",
|
||||||
"message":"commit message\n",
|
"message":"commit message\n",
|
||||||
"author":{
|
"author":{
|
||||||
"username":"emmap1",
|
"nickname":"emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name":"Emma",
|
"display_name":"Emma",
|
||||||
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid":"{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links":{
|
"links":{
|
||||||
"self":{
|
"self":{
|
||||||
"href":"https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href":"https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html":{
|
"html":{
|
||||||
"href":"https://api.bitbucket.org/emmap1"
|
"href":"https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar":{
|
"avatar":{
|
||||||
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href":"https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
Vendored
+8
-6
@@ -1,15 +1,16 @@
|
|||||||
{
|
{
|
||||||
"actor": {
|
"actor": {
|
||||||
"type": "user",
|
"type": "user",
|
||||||
"username": "emmap1",
|
"nickname": "emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name": "Emma",
|
"display_name": "Emma",
|
||||||
"uuid": "{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid": "{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links": {
|
"links": {
|
||||||
"self": {
|
"self": {
|
||||||
"href": "https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href": "https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html": {
|
"html": {
|
||||||
"href": "https://api.bitbucket.org/emmap1"
|
"href": "https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar": {
|
"avatar": {
|
||||||
"href": "https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href": "https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
@@ -49,15 +50,16 @@
|
|||||||
"website": "https://mywebsite.com/",
|
"website": "https://mywebsite.com/",
|
||||||
"owner": {
|
"owner": {
|
||||||
"type": "user",
|
"type": "user",
|
||||||
"username": "emmap1",
|
"nickname": "emmap1",
|
||||||
|
"account_id":"udfy9suggmzpswxc7n200y3c",
|
||||||
"display_name": "Emma",
|
"display_name": "Emma",
|
||||||
"uuid": "{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
"uuid": "{a54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3}",
|
||||||
"links": {
|
"links": {
|
||||||
"self": {
|
"self": {
|
||||||
"href": "https://api.bitbucket.org/api/2.0/users/emmap1"
|
"href": "https://api.bitbucket.org/api/2.0/users/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"html": {
|
"html": {
|
||||||
"href": "https://api.bitbucket.org/emmap1"
|
"href": "https://api.bitbucket.org/%7Ba54f16da-24e9-4d7f-a3a7-b1ba2cd98aa3%7D"
|
||||||
},
|
},
|
||||||
"avatar": {
|
"avatar": {
|
||||||
"href": "https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
"href": "https://bitbucket-api-assetroot.s3.amazonaws.com/c/photos/2015/Feb/26/3613917261-0-emmap1-avatar_avatar.png"
|
||||||
|
|||||||
+30
@@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"callback_url": "https://registry.hub.docker.com/u/svendowideit/testhook/hook/2141b5bi5i5b02bec211i4eeih0242eg11000a/",
|
||||||
|
"push_data": {
|
||||||
|
"images": [
|
||||||
|
"27d47432a69bca5f2700e4dff7de0388ed65f9d3fb1ec645e2bc24c223dc1cc3",
|
||||||
|
"51a9c7c1f8bb2fa19bcd09789a34e63f35abb80044bc10196e304f6634cc582c",
|
||||||
|
"..."
|
||||||
|
],
|
||||||
|
"pushed_at": 1.417566161e+09,
|
||||||
|
"pusher": "trustedbuilder",
|
||||||
|
"tag": "latest"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"comment_count": 0,
|
||||||
|
"date_created": 1.417494799e+09,
|
||||||
|
"description": "",
|
||||||
|
"dockerfile": "#\n# BUILD\u0009\u0009docker build -t svendowideit/apt-cacher .\n# RUN\u0009\u0009docker run -d -p 3142:3142 -name apt-cacher-run apt-cacher\n#\n# and then you can run containers with:\n# \u0009\u0009docker run -t -i -rm -e http_proxy http://192.168.1.2:3142/ debian bash\n#\nFROM\u0009\u0009ubuntu\n\n\nVOLUME\u0009\u0009[/var/cache/apt-cacher-ng]\nRUN\u0009\u0009apt-get update ; apt-get install -yq apt-cacher-ng\n\nEXPOSE \u0009\u00093142\nCMD\u0009\u0009chmod 777 /var/cache/apt-cacher-ng ; /etc/init.d/apt-cacher-ng start ; tail -f /var/log/apt-cacher-ng/*\n",
|
||||||
|
"full_description": "Docker Hub based automated build from a GitHub repo",
|
||||||
|
"is_official": false,
|
||||||
|
"is_private": true,
|
||||||
|
"is_trusted": true,
|
||||||
|
"name": "testhook",
|
||||||
|
"namespace": "svendowideit",
|
||||||
|
"owner": "svendowideit",
|
||||||
|
"repo_name": "svendowideit/testhook",
|
||||||
|
"repo_url": "https://registry.hub.docker.com/u/svendowideit/testhook/",
|
||||||
|
"star_count": 0,
|
||||||
|
"status": "Active"
|
||||||
|
}
|
||||||
|
}
|
||||||
Vendored
+230
@@ -0,0 +1,230 @@
|
|||||||
|
{
|
||||||
|
"action": "rerequested",
|
||||||
|
"check_run": {
|
||||||
|
"id": 4,
|
||||||
|
"head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3",
|
||||||
|
"external_id": "",
|
||||||
|
"url": "https://api.github.com/repos/github/hello-world/check-runs/4",
|
||||||
|
"html_url": "http://github.com/github/hello-world/runs/4",
|
||||||
|
"status": "completed",
|
||||||
|
"conclusion": "neutral",
|
||||||
|
"started_at": "2018-05-04T01:14:52Z",
|
||||||
|
"completed_at": "2018-05-04T01:14:52Z",
|
||||||
|
"output": {
|
||||||
|
"title": "Report",
|
||||||
|
"summary": "It's all good.",
|
||||||
|
"text": "Minus odio facilis repudiandae. Soluta odit aut amet magni nobis. Et voluptatibus ex dolorem et eum.",
|
||||||
|
"annotations_count": 2,
|
||||||
|
"annotations_url": "https://api.github.com/repos/github/hello-world/check-runs/4/annotations"
|
||||||
|
},
|
||||||
|
"name": "randscape",
|
||||||
|
"check_suite": {
|
||||||
|
"id": 5,
|
||||||
|
"head_branch": "master",
|
||||||
|
"head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3",
|
||||||
|
"status": "completed",
|
||||||
|
"conclusion": "neutral",
|
||||||
|
"url": "https://api.github.com/repos/github/hello-world/check-suites/5",
|
||||||
|
"before": "146e867f55c26428e5f9fade55a9bbf5e95a7912",
|
||||||
|
"after": "d6fde92930d4715a2b49857d24b940956b26d2d3",
|
||||||
|
"pull_requests": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"app": {
|
||||||
|
"id": 2,
|
||||||
|
"node_id": "MDExOkludGVncmF0aW9uMQ==",
|
||||||
|
"owner": {
|
||||||
|
"login": "github",
|
||||||
|
"id": 340,
|
||||||
|
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
|
||||||
|
"avatar_url": "http://alambic.github.com/avatars/u/340?",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/github",
|
||||||
|
"html_url": "http://github.com/github",
|
||||||
|
"followers_url": "https://api.github.com/users/github/followers",
|
||||||
|
"following_url": "https://api.github.com/users/github/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/github/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/github/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/github/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/github/repos",
|
||||||
|
"events_url": "https://api.github.com/users/github/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/github/received_events",
|
||||||
|
"type": "Organization",
|
||||||
|
"site_admin": false
|
||||||
|
},
|
||||||
|
"name": "Super Duper",
|
||||||
|
"description": null,
|
||||||
|
"external_url": "http://super-duper.example.com",
|
||||||
|
"html_url": "http://github.com/apps/super-duper",
|
||||||
|
"created_at": "2018-04-25 20:42:10",
|
||||||
|
"updated_at": "2018-04-25 20:42:10"
|
||||||
|
},
|
||||||
|
"created_at": "2018-05-04T01:14:52Z",
|
||||||
|
"updated_at": "2018-05-04T01:14:52Z"
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"id": 2,
|
||||||
|
"node_id": "MDExOkludGVncmF0aW9uMQ==",
|
||||||
|
"owner": {
|
||||||
|
"login": "github",
|
||||||
|
"id": 340,
|
||||||
|
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
|
||||||
|
"avatar_url": "http://alambic.github.com/avatars/u/340?",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/github",
|
||||||
|
"html_url": "http://github.com/github",
|
||||||
|
"followers_url": "https://api.github.com/users/github/followers",
|
||||||
|
"following_url": "https://api.github.com/users/github/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/github/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/github/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/github/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/github/repos",
|
||||||
|
"events_url": "https://api.github.com/users/github/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/github/received_events",
|
||||||
|
"type": "Organization",
|
||||||
|
"site_admin": false
|
||||||
|
},
|
||||||
|
"name": "Super Duper",
|
||||||
|
"description": null,
|
||||||
|
"external_url": "http://super-duper.example.com",
|
||||||
|
"html_url": "http://github.com/apps/super-duper",
|
||||||
|
"created_at": "2018-04-25 20:42:10",
|
||||||
|
"updated_at": "2018-04-25 20:42:10"
|
||||||
|
},
|
||||||
|
"pull_requests": [
|
||||||
|
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"id": 526,
|
||||||
|
"node_id": "MDEwOlJlcG9zaXRvcnkxMzU0OTMyMzM=",
|
||||||
|
"name": "hello-world",
|
||||||
|
"full_name": "github/hello-world",
|
||||||
|
"owner": {
|
||||||
|
"login": "github",
|
||||||
|
"id": 340,
|
||||||
|
"node_id": "MDQ6VXNlcjIxMDMxMDY3",
|
||||||
|
"avatar_url": "http://alambic.github.com/avatars/u/340?",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/github",
|
||||||
|
"html_url": "http://github.com/github",
|
||||||
|
"followers_url": "https://api.github.com/users/github/followers",
|
||||||
|
"following_url": "https://api.github.com/users/github/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/github/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/github/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/github/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/github/repos",
|
||||||
|
"events_url": "https://api.github.com/users/github/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/github/received_events",
|
||||||
|
"type": "Organization",
|
||||||
|
"site_admin": false
|
||||||
|
},
|
||||||
|
"private": false,
|
||||||
|
"html_url": "http://github.com/github/hello-world",
|
||||||
|
"description": null,
|
||||||
|
"fork": false,
|
||||||
|
"url": "https://api.github.com/repos/github/hello-world",
|
||||||
|
"forks_url": "https://api.github.com/repos/github/hello-world/forks",
|
||||||
|
"keys_url": "https://api.github.com/repos/github/hello-world/keys{/key_id}",
|
||||||
|
"collaborators_url": "https://api.github.com/repos/github/hello-world/collaborators{/collaborator}",
|
||||||
|
"teams_url": "https://api.github.com/repos/github/hello-world/teams",
|
||||||
|
"hooks_url": "https://api.github.com/repos/github/hello-world/hooks",
|
||||||
|
"issue_events_url": "https://api.github.com/repos/github/hello-world/issues/events{/number}",
|
||||||
|
"events_url": "https://api.github.com/repos/github/hello-world/events",
|
||||||
|
"assignees_url": "https://api.github.com/repos/github/hello-world/assignees{/user}",
|
||||||
|
"branches_url": "https://api.github.com/repos/github/hello-world/branches{/branch}",
|
||||||
|
"tags_url": "https://api.github.com/repos/github/hello-world/tags",
|
||||||
|
"blobs_url": "https://api.github.com/repos/github/hello-world/git/blobs{/sha}",
|
||||||
|
"git_tags_url": "https://api.github.com/repos/github/hello-world/git/tags{/sha}",
|
||||||
|
"git_refs_url": "https://api.github.com/repos/github/hello-world/git/refs{/sha}",
|
||||||
|
"trees_url": "https://api.github.com/repos/github/hello-world/git/trees{/sha}",
|
||||||
|
"statuses_url": "https://api.github.com/repos/github/hello-world/statuses/{sha}",
|
||||||
|
"languages_url": "https://api.github.com/repos/github/hello-world/languages",
|
||||||
|
"stargazers_url": "https://api.github.com/repos/github/hello-world/stargazers",
|
||||||
|
"contributors_url": "https://api.github.com/repos/github/hello-world/contributors",
|
||||||
|
"subscribers_url": "https://api.github.com/repos/github/hello-world/subscribers",
|
||||||
|
"subscription_url": "https://api.github.com/repos/github/hello-world/subscription",
|
||||||
|
"commits_url": "https://api.github.com/repos/github/hello-world/commits{/sha}",
|
||||||
|
"git_commits_url": "https://api.github.com/repos/github/hello-world/git/commits{/sha}",
|
||||||
|
"comments_url": "https://api.github.com/repos/github/hello-world/comments{/number}",
|
||||||
|
"issue_comment_url": "https://api.github.com/repos/github/hello-world/issues/comments{/number}",
|
||||||
|
"contents_url": "https://api.github.com/repos/github/hello-world/contents/{+path}",
|
||||||
|
"compare_url": "https://api.github.com/repos/github/hello-world/compare/{base}...{head}",
|
||||||
|
"merges_url": "https://api.github.com/repos/github/hello-world/merges",
|
||||||
|
"archive_url": "https://api.github.com/repos/github/hello-world/{archive_format}{/ref}",
|
||||||
|
"downloads_url": "https://api.github.com/repos/github/hello-world/downloads",
|
||||||
|
"issues_url": "https://api.github.com/repos/github/hello-world/issues{/number}",
|
||||||
|
"pulls_url": "https://api.github.com/repos/github/hello-world/pulls{/number}",
|
||||||
|
"milestones_url": "https://api.github.com/repos/github/hello-world/milestones{/number}",
|
||||||
|
"notifications_url": "https://api.github.com/repos/github/hello-world/notifications{?since,all,participating}",
|
||||||
|
"labels_url": "https://api.github.com/repos/github/hello-world/labels{/name}",
|
||||||
|
"releases_url": "https://api.github.com/repos/github/hello-world/releases{/id}",
|
||||||
|
"deployments_url": "https://api.github.com/repos/github/hello-world/deployments",
|
||||||
|
"created_at": "2018-04-25T20:42:10Z",
|
||||||
|
"updated_at": "2018-04-25T20:43:34Z",
|
||||||
|
"pushed_at": "2018-05-04T01:14:47Z",
|
||||||
|
"git_url": "git://github.com/github/hello-world.git",
|
||||||
|
"ssh_url": "ssh://git@localhost:3035/github/hello-world.git",
|
||||||
|
"clone_url": "http://github.com/github/hello-world.git",
|
||||||
|
"svn_url": "http://github.com/github/hello-world",
|
||||||
|
"homepage": null,
|
||||||
|
"size": 0,
|
||||||
|
"stargazers_count": 0,
|
||||||
|
"watchers_count": 0,
|
||||||
|
"language": null,
|
||||||
|
"has_issues": true,
|
||||||
|
"has_projects": true,
|
||||||
|
"has_downloads": true,
|
||||||
|
"has_wiki": true,
|
||||||
|
"has_pages": false,
|
||||||
|
"forks_count": 0,
|
||||||
|
"mirror_url": null,
|
||||||
|
"archived": false,
|
||||||
|
"open_issues_count": 3,
|
||||||
|
"license": null,
|
||||||
|
"forks": 0,
|
||||||
|
"open_issues": 3,
|
||||||
|
"watchers": 0,
|
||||||
|
"default_branch": "master"
|
||||||
|
},
|
||||||
|
"organization": {
|
||||||
|
"login": "github",
|
||||||
|
"id": 340,
|
||||||
|
"node_id": "MDEyOk9yZ2FuaXphdGlvbjM4MzAyODk5",
|
||||||
|
"url": "https://api.github.com/orgs/github",
|
||||||
|
"repos_url": "https://api.github.com/orgs/github/repos",
|
||||||
|
"events_url": "https://api.github.com/orgs/github/events",
|
||||||
|
"hooks_url": "https://api.github.com/orgs/github/hooks",
|
||||||
|
"issues_url": "https://api.github.com/orgs/github/issues",
|
||||||
|
"members_url": "https://api.github.com/orgs/github/members{/member}",
|
||||||
|
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
|
||||||
|
"avatar_url": "http://alambic.github.com/avatars/u/340?",
|
||||||
|
"description": "How people build software."
|
||||||
|
},
|
||||||
|
"sender": {
|
||||||
|
"login": "octocat",
|
||||||
|
"id": 5346,
|
||||||
|
"node_id": "MDQ6VXNlcjIxMDMxMDY3",
|
||||||
|
"avatar_url": "http://alambic.github.com/avatars/u/5346?",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/octocat",
|
||||||
|
"html_url": "http://github.com/octocat",
|
||||||
|
"followers_url": "https://api.github.com/users/octocat/followers",
|
||||||
|
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/octocat/repos",
|
||||||
|
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
||||||
|
"type": "User",
|
||||||
|
"site_admin": false
|
||||||
|
},
|
||||||
|
"installation": {
|
||||||
|
"id": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
Vendored
+194
@@ -0,0 +1,194 @@
|
|||||||
|
{
|
||||||
|
"action": "requested",
|
||||||
|
"check_suite": {
|
||||||
|
"id": 5,
|
||||||
|
"head_branch": "master",
|
||||||
|
"head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3",
|
||||||
|
"status": "completed",
|
||||||
|
"conclusion": "neutral",
|
||||||
|
"url": "https://api.github.com/repos/github/hello-world/check-suites/5",
|
||||||
|
"before": "146e867f55c26428e5f9fade55a9bbf5e95a7912",
|
||||||
|
"after": "d6fde92930d4715a2b49857d24b940956b26d2d3",
|
||||||
|
"pull_requests": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"app": {
|
||||||
|
"id": 2,
|
||||||
|
"node_id": "MDExOkludGVncmF0aW9uMQ==",
|
||||||
|
"owner": {
|
||||||
|
"login": "github",
|
||||||
|
"id": 340,
|
||||||
|
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
|
||||||
|
"avatar_url": "http://alambic.github.com/avatars/u/340?",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/github",
|
||||||
|
"html_url": "http://github.com/github",
|
||||||
|
"followers_url": "https://api.github.com/users/github/followers",
|
||||||
|
"following_url": "https://api.github.com/users/github/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/github/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/github/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/github/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/github/repos",
|
||||||
|
"events_url": "https://api.github.com/users/github/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/github/received_events",
|
||||||
|
"type": "Organization",
|
||||||
|
"site_admin": false
|
||||||
|
},
|
||||||
|
"name": "Super Duper",
|
||||||
|
"description": null,
|
||||||
|
"external_url": "http://super-duper.example.com",
|
||||||
|
"html_url": "http://github.com/apps/super-duper",
|
||||||
|
"created_at": "2018-04-25 20:42:10",
|
||||||
|
"updated_at": "2018-04-25 20:42:10"
|
||||||
|
},
|
||||||
|
"created_at": "2018-05-04T01:14:52Z",
|
||||||
|
"updated_at": "2018-05-04T01:14:52Z",
|
||||||
|
"latest_check_runs_count": 1,
|
||||||
|
"check_runs_url": "https://api.github.com/repos/github/hello-world/check-suites/5/check-runs",
|
||||||
|
"head_commit": {
|
||||||
|
"id": "d6fde92930d4715a2b49857d24b940956b26d2d3",
|
||||||
|
"tree_id": "41a846c7d878d279f11355e23b348e1bb63b89a8",
|
||||||
|
"message": "Say hello (again) to everybody",
|
||||||
|
"timestamp": "2018-05-04T01:14:46Z",
|
||||||
|
"author": {
|
||||||
|
"name": "octocat",
|
||||||
|
"email": "octocat@github.com"
|
||||||
|
},
|
||||||
|
"committer": {
|
||||||
|
"name": "octocat",
|
||||||
|
"email": "octocat@github.com"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"id": 526,
|
||||||
|
"node_id": "MDEwOlJlcG9zaXRvcnkxMzU0OTMyMzM=",
|
||||||
|
"name": "hello-world",
|
||||||
|
"full_name": "github/hello-world",
|
||||||
|
"owner": {
|
||||||
|
"login": "github",
|
||||||
|
"id": 340,
|
||||||
|
"node_id": "MDQ6VXNlcjIxMDMxMDY3",
|
||||||
|
"avatar_url": "http://alambic.github.com/avatars/u/340?",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/github",
|
||||||
|
"html_url": "http://github.com/github",
|
||||||
|
"followers_url": "https://api.github.com/users/github/followers",
|
||||||
|
"following_url": "https://api.github.com/users/github/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/github/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/github/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/github/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/github/repos",
|
||||||
|
"events_url": "https://api.github.com/users/github/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/github/received_events",
|
||||||
|
"type": "Organization",
|
||||||
|
"site_admin": false
|
||||||
|
},
|
||||||
|
"private": false,
|
||||||
|
"html_url": "http://github.com/github/hello-world",
|
||||||
|
"description": null,
|
||||||
|
"fork": false,
|
||||||
|
"url": "https://api.github.com/repos/github/hello-world",
|
||||||
|
"forks_url": "https://api.github.com/repos/github/hello-world/forks",
|
||||||
|
"keys_url": "https://api.github.com/repos/github/hello-world/keys{/key_id}",
|
||||||
|
"collaborators_url": "https://api.github.com/repos/github/hello-world/collaborators{/collaborator}",
|
||||||
|
"teams_url": "https://api.github.com/repos/github/hello-world/teams",
|
||||||
|
"hooks_url": "https://api.github.com/repos/github/hello-world/hooks",
|
||||||
|
"issue_events_url": "https://api.github.com/repos/github/hello-world/issues/events{/number}",
|
||||||
|
"events_url": "https://api.github.com/repos/github/hello-world/events",
|
||||||
|
"assignees_url": "https://api.github.com/repos/github/hello-world/assignees{/user}",
|
||||||
|
"branches_url": "https://api.github.com/repos/github/hello-world/branches{/branch}",
|
||||||
|
"tags_url": "https://api.github.com/repos/github/hello-world/tags",
|
||||||
|
"blobs_url": "https://api.github.com/repos/github/hello-world/git/blobs{/sha}",
|
||||||
|
"git_tags_url": "https://api.github.com/repos/github/hello-world/git/tags{/sha}",
|
||||||
|
"git_refs_url": "https://api.github.com/repos/github/hello-world/git/refs{/sha}",
|
||||||
|
"trees_url": "https://api.github.com/repos/github/hello-world/git/trees{/sha}",
|
||||||
|
"statuses_url": "https://api.github.com/repos/github/hello-world/statuses/{sha}",
|
||||||
|
"languages_url": "https://api.github.com/repos/github/hello-world/languages",
|
||||||
|
"stargazers_url": "https://api.github.com/repos/github/hello-world/stargazers",
|
||||||
|
"contributors_url": "https://api.github.com/repos/github/hello-world/contributors",
|
||||||
|
"subscribers_url": "https://api.github.com/repos/github/hello-world/subscribers",
|
||||||
|
"subscription_url": "https://api.github.com/repos/github/hello-world/subscription",
|
||||||
|
"commits_url": "https://api.github.com/repos/github/hello-world/commits{/sha}",
|
||||||
|
"git_commits_url": "https://api.github.com/repos/github/hello-world/git/commits{/sha}",
|
||||||
|
"comments_url": "https://api.github.com/repos/github/hello-world/comments{/number}",
|
||||||
|
"issue_comment_url": "https://api.github.com/repos/github/hello-world/issues/comments{/number}",
|
||||||
|
"contents_url": "https://api.github.com/repos/github/hello-world/contents/{+path}",
|
||||||
|
"compare_url": "https://api.github.com/repos/github/hello-world/compare/{base}...{head}",
|
||||||
|
"merges_url": "https://api.github.com/repos/github/hello-world/merges",
|
||||||
|
"archive_url": "https://api.github.com/repos/github/hello-world/{archive_format}{/ref}",
|
||||||
|
"downloads_url": "https://api.github.com/repos/github/hello-world/downloads",
|
||||||
|
"issues_url": "https://api.github.com/repos/github/hello-world/issues{/number}",
|
||||||
|
"pulls_url": "https://api.github.com/repos/github/hello-world/pulls{/number}",
|
||||||
|
"milestones_url": "https://api.github.com/repos/github/hello-world/milestones{/number}",
|
||||||
|
"notifications_url": "https://api.github.com/repos/github/hello-world/notifications{?since,all,participating}",
|
||||||
|
"labels_url": "https://api.github.com/repos/github/hello-world/labels{/name}",
|
||||||
|
"releases_url": "https://api.github.com/repos/github/hello-world/releases{/id}",
|
||||||
|
"deployments_url": "https://api.github.com/repos/github/hello-world/deployments",
|
||||||
|
"created_at": "2018-04-25T20:42:10Z",
|
||||||
|
"updated_at": "2018-04-25T20:43:34Z",
|
||||||
|
"pushed_at": "2018-05-04T01:14:47Z",
|
||||||
|
"git_url": "git://github.com/github/hello-world.git",
|
||||||
|
"ssh_url": "ssh://git@localhost:3035/github/hello-world.git",
|
||||||
|
"clone_url": "http://github.com/github/hello-world.git",
|
||||||
|
"svn_url": "http://github.com/github/hello-world",
|
||||||
|
"homepage": null,
|
||||||
|
"size": 0,
|
||||||
|
"stargazers_count": 0,
|
||||||
|
"watchers_count": 0,
|
||||||
|
"language": null,
|
||||||
|
"has_issues": true,
|
||||||
|
"has_projects": true,
|
||||||
|
"has_downloads": true,
|
||||||
|
"has_wiki": true,
|
||||||
|
"has_pages": false,
|
||||||
|
"forks_count": 0,
|
||||||
|
"mirror_url": null,
|
||||||
|
"archived": false,
|
||||||
|
"open_issues_count": 3,
|
||||||
|
"license": null,
|
||||||
|
"forks": 0,
|
||||||
|
"open_issues": 3,
|
||||||
|
"watchers": 0,
|
||||||
|
"default_branch": "master"
|
||||||
|
},
|
||||||
|
"organization": {
|
||||||
|
"login": "github",
|
||||||
|
"id": 340,
|
||||||
|
"node_id": "MDEyOk9yZ2FuaXphdGlvbjM4MzAyODk5",
|
||||||
|
"url": "https://api.github.com/orgs/github",
|
||||||
|
"repos_url": "https://api.github.com/orgs/github/repos",
|
||||||
|
"events_url": "https://api.github.com/orgs/github/events",
|
||||||
|
"hooks_url": "https://api.github.com/orgs/github/hooks",
|
||||||
|
"issues_url": "https://api.github.com/orgs/github/issues",
|
||||||
|
"members_url": "https://api.github.com/orgs/github/members{/member}",
|
||||||
|
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
|
||||||
|
"avatar_url": "http://alambic.github.com/avatars/u/340?",
|
||||||
|
"description": "How people build software."
|
||||||
|
},
|
||||||
|
"sender": {
|
||||||
|
"login": "octocat",
|
||||||
|
"id": 5346,
|
||||||
|
"node_id": "MDQ6VXNlcjIxMDMxMDY3",
|
||||||
|
"avatar_url": "http://alambic.github.com/avatars/u/5346?",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/octocat",
|
||||||
|
"html_url": "http://github.com/octocat",
|
||||||
|
"followers_url": "https://api.github.com/users/octocat/followers",
|
||||||
|
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/octocat/repos",
|
||||||
|
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
||||||
|
"type": "User",
|
||||||
|
"site_admin": false
|
||||||
|
},
|
||||||
|
"installation": {
|
||||||
|
"id": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
+77
@@ -0,0 +1,77 @@
|
|||||||
|
{
|
||||||
|
"action": "removed",
|
||||||
|
"installation": {
|
||||||
|
"id": 2,
|
||||||
|
"account": {
|
||||||
|
"login": "octocat",
|
||||||
|
"id": 1,
|
||||||
|
"node_id": "MDQ6VXNlcjE=",
|
||||||
|
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/octocat",
|
||||||
|
"html_url": "https://github.com/octocat",
|
||||||
|
"followers_url": "https://api.github.com/users/octocat/followers",
|
||||||
|
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/octocat/repos",
|
||||||
|
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
||||||
|
"type": "User",
|
||||||
|
"site_admin": false
|
||||||
|
},
|
||||||
|
"repository_selection": "selected",
|
||||||
|
"access_tokens_url": "https://api.github.com/installations/2/access_tokens",
|
||||||
|
"repositories_url": "https://api.github.com/installation/repositories",
|
||||||
|
"html_url": "https://github.com/settings/installations/2",
|
||||||
|
"app_id": 5725,
|
||||||
|
"target_id": 3880403,
|
||||||
|
"target_type": "User",
|
||||||
|
"permissions": {
|
||||||
|
"metadata": "read",
|
||||||
|
"contents": "read",
|
||||||
|
"issues": "write"
|
||||||
|
},
|
||||||
|
"events": [
|
||||||
|
"push",
|
||||||
|
"pull_request"
|
||||||
|
],
|
||||||
|
"created_at": 1525109898,
|
||||||
|
"updated_at": 1525109899,
|
||||||
|
"single_file_name": "config.yml"
|
||||||
|
},
|
||||||
|
"repository_selection": "selected",
|
||||||
|
"repositories_added": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"repositories_removed": [
|
||||||
|
{
|
||||||
|
"id": 1296269,
|
||||||
|
"name": "Hello-World",
|
||||||
|
"full_name": "octocat/Hello-World",
|
||||||
|
"private": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sender": {
|
||||||
|
"login": "octocat",
|
||||||
|
"id": 1,
|
||||||
|
"node_id": "MDQ6VXNlcjE=",
|
||||||
|
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/octocat",
|
||||||
|
"html_url": "https://github.com/octocat",
|
||||||
|
"followers_url": "https://api.github.com/users/octocat/followers",
|
||||||
|
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/octocat/repos",
|
||||||
|
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
||||||
|
"type": "User",
|
||||||
|
"site_admin": false
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
{
|
||||||
|
"action": "removed",
|
||||||
|
"installation": {
|
||||||
|
"id": 2,
|
||||||
|
"account": {
|
||||||
|
"login": "octocat",
|
||||||
|
"id": 1,
|
||||||
|
"node_id": "MDQ6VXNlcjE=",
|
||||||
|
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/octocat",
|
||||||
|
"html_url": "https://github.com/octocat",
|
||||||
|
"followers_url": "https://api.github.com/users/octocat/followers",
|
||||||
|
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/octocat/repos",
|
||||||
|
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
||||||
|
"type": "User",
|
||||||
|
"site_admin": false
|
||||||
|
},
|
||||||
|
"repository_selection": "selected",
|
||||||
|
"access_tokens_url": "https://api.github.com/installations/2/access_tokens",
|
||||||
|
"repositories_url": "https://api.github.com/installation/repositories",
|
||||||
|
"html_url": "https://github.com/settings/installations/2",
|
||||||
|
"app_id": 5725,
|
||||||
|
"target_id": 3880403,
|
||||||
|
"target_type": "User",
|
||||||
|
"permissions": {
|
||||||
|
"metadata": "read",
|
||||||
|
"contents": "read",
|
||||||
|
"issues": "write"
|
||||||
|
},
|
||||||
|
"events": [
|
||||||
|
"push",
|
||||||
|
"pull_request"
|
||||||
|
],
|
||||||
|
"created_at": 1525109898,
|
||||||
|
"updated_at": 1525109899,
|
||||||
|
"single_file_name": "config.yml"
|
||||||
|
},
|
||||||
|
"repository_selection": "selected",
|
||||||
|
"repositories_added": [],
|
||||||
|
"repositories_removed": [
|
||||||
|
{
|
||||||
|
"id": 1296269,
|
||||||
|
"name": "Hello-World",
|
||||||
|
"full_name": "octocat/Hello-World",
|
||||||
|
"private": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sender": {
|
||||||
|
"login": "octocat",
|
||||||
|
"id": 1,
|
||||||
|
"node_id": "MDQ6VXNlcjE=",
|
||||||
|
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/octocat",
|
||||||
|
"html_url": "https://github.com/octocat",
|
||||||
|
"followers_url": "https://api.github.com/users/octocat/followers",
|
||||||
|
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/octocat/repos",
|
||||||
|
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
||||||
|
"type": "User",
|
||||||
|
"site_admin": false
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"action": "dismiss",
|
||||||
|
"alert": {
|
||||||
|
"id": 7649605,
|
||||||
|
"affected_range": "0.2.0",
|
||||||
|
"affected_package_name": "many_versioned_gem",
|
||||||
|
"external_reference": "https://nvd.nist.gov/vuln/detail/CVE-2018-3728",
|
||||||
|
"external_identifier": "CVE-2018-3728",
|
||||||
|
"fixed_in": "0.2.5",
|
||||||
|
"dismisser": {
|
||||||
|
"login":"octocat",
|
||||||
|
"id":1,
|
||||||
|
"node_id": "MDQ6VXNlcjIxMDMxMDY3",
|
||||||
|
"avatar_url":"https://github.com/images/error/octocat_happy.gif",
|
||||||
|
"gravatar_id":"",
|
||||||
|
"url":"https://api.github.com/users/octocat",
|
||||||
|
"html_url":"https://github.com/octocat",
|
||||||
|
"followers_url":"https://api.github.com/users/octocat/followers",
|
||||||
|
"following_url":"https://api.github.com/users/octocat/following{/other_user}",
|
||||||
|
"gists_url":"https://api.github.com/users/octocat/gists{/gist_id}",
|
||||||
|
"starred_url":"https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url":"https://api.github.com/users/octocat/subscriptions",
|
||||||
|
"organizations_url":"https://api.github.com/users/octocat/orgs",
|
||||||
|
"repos_url":"https://api.github.com/users/octocat/repos",
|
||||||
|
"events_url":"https://api.github.com/users/octocat/events{/privacy}",
|
||||||
|
"received_events_url":"https://api.github.com/users/octocat/received_events",
|
||||||
|
"type":"User",
|
||||||
|
"site_admin":true
|
||||||
|
},
|
||||||
|
"dismiss_reason": "No bandwidth to fix this",
|
||||||
|
"dismissed_at": "2017-10-25T00:00:00+00:00"
|
||||||
|
}
|
||||||
|
}
|
||||||
+51
@@ -0,0 +1,51 @@
|
|||||||
|
{
|
||||||
|
"action": "published",
|
||||||
|
"security_advisory": {
|
||||||
|
"ghsa_id": "GHSA-rf4j-j272-fj86",
|
||||||
|
"summary": "Moderate severity vulnerability that affects django",
|
||||||
|
"description": "django.contrib.auth.forms.AuthenticationForm in Django 2.0 before 2.0.2, and 1.11.8 and 1.11.9, allows remote attackers to obtain potentially sensitive information by leveraging data exposure from the confirm_login_allowed() method, as demonstrated by discovering whether a user account is inactive.",
|
||||||
|
"severity": "moderate",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"value": "GHSA-rf4j-j272-fj86",
|
||||||
|
"type": "GHSA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"value": "CVE-2018-6188",
|
||||||
|
"type": "CVE"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"url": "https://nvd.nist.gov/vuln/detail/CVE-2018-6188"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"published_at": "2018-10-03T21:13:54Z",
|
||||||
|
"updated_at": "2018-10-03T21:13:54Z",
|
||||||
|
"withdrawn_at": null,
|
||||||
|
"vulnerabilities": [
|
||||||
|
{
|
||||||
|
"package": {
|
||||||
|
"ecosystem": "pip",
|
||||||
|
"name": "django"
|
||||||
|
},
|
||||||
|
"severity": "moderate",
|
||||||
|
"vulnerable_version_range": ">= 2.0.0, < 2.0.2",
|
||||||
|
"first_patched_version": {
|
||||||
|
"identifier": "2.0.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"package": {
|
||||||
|
"ecosystem": "pip",
|
||||||
|
"name": "django"
|
||||||
|
},
|
||||||
|
"severity": "moderate",
|
||||||
|
"vulnerable_version_range": ">= 1.11.8, < 1.11.10",
|
||||||
|
"first_patched_version": {
|
||||||
|
"identifier": "1.11.10"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
+31
-2
@@ -35,7 +35,36 @@
|
|||||||
"project_id": 14,
|
"project_id": 14,
|
||||||
"created_at": "2013-12-03T17:15:43Z",
|
"created_at": "2013-12-03T17:15:43Z",
|
||||||
"updated_at": "2013-12-03T17:15:43Z",
|
"updated_at": "2013-12-03T17:15:43Z",
|
||||||
"position": 0,
|
"change_position": {
|
||||||
|
"base_sha": null,
|
||||||
|
"start_sha": null,
|
||||||
|
"head_sha": null,
|
||||||
|
"old_path": null,
|
||||||
|
"new_path": null,
|
||||||
|
"position_type": "text",
|
||||||
|
"old_line": null,
|
||||||
|
"new_line": null
|
||||||
|
},
|
||||||
|
"original_position": {
|
||||||
|
"base_sha": "0a87d409a2d5ffbf586ed3e7ff36396ca59c3c14",
|
||||||
|
"start_sha": "5f7519856cb2a7c05427a8c1e83f941828567923",
|
||||||
|
"head_sha": "562e173be03b8ff2efb05345d12df18815438a4b",
|
||||||
|
"old_path": "core/src/main/java/com/example/server/CorbaServer.java",
|
||||||
|
"new_path": "core/src/main/java/com/example/server/CorbaServer.java",
|
||||||
|
"position_type": "text",
|
||||||
|
"old_line": null,
|
||||||
|
"new_line": 74
|
||||||
|
},
|
||||||
|
"position": {
|
||||||
|
"base_sha": "0a87d409a2d5ffbf586ed3e7ff36396ca59c3c14",
|
||||||
|
"start_sha": "5f7519856cb2a7c05427a8c1e83f941828567923",
|
||||||
|
"head_sha": "562e173be03b8ff2efb05345d12df18815438a4b",
|
||||||
|
"old_path": "core/src/main/java/com/example/server/CorbaServer.java",
|
||||||
|
"new_path": "core/src/main/java/com/example/server/CorbaServer.java",
|
||||||
|
"position_type": "text",
|
||||||
|
"old_line": null,
|
||||||
|
"new_line": 74
|
||||||
|
},
|
||||||
"branch_name": null,
|
"branch_name": null,
|
||||||
"description": "Create new API for manipulations with repository",
|
"description": "Create new API for manipulations with repository",
|
||||||
"milestone_id": null,
|
"milestone_id": null,
|
||||||
@@ -49,4 +78,4 @@
|
|||||||
"username": "user1",
|
"username": "user1",
|
||||||
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon"
|
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Vendored
+31
-2
@@ -35,7 +35,36 @@
|
|||||||
"project_id": 14,
|
"project_id": 14,
|
||||||
"created_at": "2013-12-03T17:15:43Z",
|
"created_at": "2013-12-03T17:15:43Z",
|
||||||
"updated_at": "2013-12-03T17:15:43Z",
|
"updated_at": "2013-12-03T17:15:43Z",
|
||||||
"position": 0,
|
"change_position": {
|
||||||
|
"base_sha": null,
|
||||||
|
"start_sha": null,
|
||||||
|
"head_sha": null,
|
||||||
|
"old_path": null,
|
||||||
|
"new_path": null,
|
||||||
|
"position_type": "text",
|
||||||
|
"old_line": null,
|
||||||
|
"new_line": null
|
||||||
|
},
|
||||||
|
"original_position": {
|
||||||
|
"base_sha": "0a87d409a2d5ffbf586ed3e7ff36396ca59c3c14",
|
||||||
|
"start_sha": "5f7519856cb2a7c05427a8c1e83f941828567923",
|
||||||
|
"head_sha": "562e173be03b8ff2efb05345d12df18815438a4b",
|
||||||
|
"old_path": "core/src/main/java/com/example/server/CorbaServer.java",
|
||||||
|
"new_path": "core/src/main/java/com/example/server/CorbaServer.java",
|
||||||
|
"position_type": "text",
|
||||||
|
"old_line": null,
|
||||||
|
"new_line": 74
|
||||||
|
},
|
||||||
|
"position": {
|
||||||
|
"base_sha": "0a87d409a2d5ffbf586ed3e7ff36396ca59c3c14",
|
||||||
|
"start_sha": "5f7519856cb2a7c05427a8c1e83f941828567923",
|
||||||
|
"head_sha": "562e173be03b8ff2efb05345d12df18815438a4b",
|
||||||
|
"old_path": "core/src/main/java/com/example/server/CorbaServer.java",
|
||||||
|
"new_path": "core/src/main/java/com/example/server/CorbaServer.java",
|
||||||
|
"position_type": "text",
|
||||||
|
"old_line": null,
|
||||||
|
"new_line": 74
|
||||||
|
},
|
||||||
"branch_name": null,
|
"branch_name": null,
|
||||||
"description": "Create new API for manipulations with repository",
|
"description": "Create new API for manipulations with repository",
|
||||||
"milestone_id": null,
|
"milestone_id": null,
|
||||||
@@ -49,4 +78,4 @@
|
|||||||
"username": "user1",
|
"username": "user1",
|
||||||
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon"
|
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Vendored
+42
@@ -0,0 +1,42 @@
|
|||||||
|
{
|
||||||
|
"object_kind": "job",
|
||||||
|
"ref": "gitlab-script-trigger",
|
||||||
|
"tag": false,
|
||||||
|
"before_sha": "2293ada6b400935a1378653304eaf6221e0fdb8f",
|
||||||
|
"sha": "2293ada6b400935a1378653304eaf6221e0fdb8f",
|
||||||
|
"job_id": 1977,
|
||||||
|
"job_name": "test",
|
||||||
|
"job_stage": "test",
|
||||||
|
"job_status": "created",
|
||||||
|
"job_started_at": null,
|
||||||
|
"job_finished_at": null,
|
||||||
|
"job_duration": null,
|
||||||
|
"job_allow_failure": false,
|
||||||
|
"job_failure_reason": "script_failure",
|
||||||
|
"project_id": 380,
|
||||||
|
"project_name": "gitlab-org/gitlab-test",
|
||||||
|
"user": {
|
||||||
|
"id": 3,
|
||||||
|
"name": "User",
|
||||||
|
"email": "user@gitlab.com"
|
||||||
|
},
|
||||||
|
"commit": {
|
||||||
|
"id": 2366,
|
||||||
|
"sha": "2293ada6b400935a1378653304eaf6221e0fdb8f",
|
||||||
|
"message": "test\n",
|
||||||
|
"author_name": "User",
|
||||||
|
"author_email": "user@gitlab.com",
|
||||||
|
"status": "created",
|
||||||
|
"duration": null,
|
||||||
|
"started_at": null,
|
||||||
|
"finished_at": null
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"name": "gitlab_test",
|
||||||
|
"description": "Atque in sunt eos similique dolores voluptatem.",
|
||||||
|
"homepage": "http://192.168.64.1:3005/gitlab-org/gitlab-test",
|
||||||
|
"git_ssh_url": "git@192.168.64.1:gitlab-org/gitlab-test.git",
|
||||||
|
"git_http_url": "http://192.168.64.1:3005/gitlab-org/gitlab-test.git",
|
||||||
|
"visibility_level": 20
|
||||||
|
}
|
||||||
|
}
|
||||||
Vendored
+28
-6
@@ -14,7 +14,13 @@
|
|||||||
],
|
],
|
||||||
"created_at": "2016-08-12 15:23:28 UTC",
|
"created_at": "2016-08-12 15:23:28 UTC",
|
||||||
"finished_at": "2016-08-12 15:26:29 UTC",
|
"finished_at": "2016-08-12 15:26:29 UTC",
|
||||||
"duration": 63
|
"duration": 63,
|
||||||
|
"variables": [
|
||||||
|
{
|
||||||
|
"key": "NESTOR_PROD_ENVIRONMENT",
|
||||||
|
"value": "us-west-1"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"user":{
|
"user":{
|
||||||
"name": "Administrator",
|
"name": "Administrator",
|
||||||
@@ -22,6 +28,7 @@
|
|||||||
"avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon"
|
"avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon"
|
||||||
},
|
},
|
||||||
"project":{
|
"project":{
|
||||||
|
"id": 1,
|
||||||
"name": "Gitlab Test",
|
"name": "Gitlab Test",
|
||||||
"description": "Atque in sunt eos similique dolores voluptatem.",
|
"description": "Atque in sunt eos similique dolores voluptatem.",
|
||||||
"web_url": "http://192.168.64.1:3005/gitlab-org/gitlab-test",
|
"web_url": "http://192.168.64.1:3005/gitlab-org/gitlab-test",
|
||||||
@@ -43,7 +50,7 @@
|
|||||||
"email": "user@gitlab.com"
|
"email": "user@gitlab.com"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"builds":[
|
"jobs":[
|
||||||
{
|
{
|
||||||
"id": 380,
|
"id": 380,
|
||||||
"stage": "deploy",
|
"stage": "deploy",
|
||||||
@@ -80,7 +87,12 @@
|
|||||||
"username": "root",
|
"username": "root",
|
||||||
"avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon"
|
"avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon"
|
||||||
},
|
},
|
||||||
"runner": null,
|
"runner": {
|
||||||
|
"id":380987,
|
||||||
|
"description":"shared-runners-manager-6.gitlab.com",
|
||||||
|
"active":true,
|
||||||
|
"is_shared":true
|
||||||
|
},
|
||||||
"artifacts_file":{
|
"artifacts_file":{
|
||||||
"filename": null,
|
"filename": null,
|
||||||
"size": null
|
"size": null
|
||||||
@@ -101,7 +113,12 @@
|
|||||||
"username": "root",
|
"username": "root",
|
||||||
"avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon"
|
"avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon"
|
||||||
},
|
},
|
||||||
"runner": null,
|
"runner": {
|
||||||
|
"id":380987,
|
||||||
|
"description":"shared-runners-manager-6.gitlab.com",
|
||||||
|
"active":true,
|
||||||
|
"is_shared":true
|
||||||
|
},
|
||||||
"artifacts_file":{
|
"artifacts_file":{
|
||||||
"filename": null,
|
"filename": null,
|
||||||
"size": null
|
"size": null
|
||||||
@@ -122,7 +139,12 @@
|
|||||||
"username": "root",
|
"username": "root",
|
||||||
"avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon"
|
"avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon"
|
||||||
},
|
},
|
||||||
"runner": null,
|
"runner": {
|
||||||
|
"id":380987,
|
||||||
|
"description":"shared-runners-manager-6.gitlab.com",
|
||||||
|
"active":true,
|
||||||
|
"is_shared":true
|
||||||
|
},
|
||||||
"artifacts_file":{
|
"artifacts_file":{
|
||||||
"filename": null,
|
"filename": null,
|
||||||
"size": null
|
"size": null
|
||||||
@@ -150,4 +172,4 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user