boring.tools-poc/bruno/Changelog/Commit/Create.bru
Lars Hampe 1b18ac3f3a
All checks were successful
Build and Push Docker Image / tests (push) Successful in 54s
Build and Push Docker Image / build (push) Successful in 3m16s
bruno: update commit create
2024-10-25 19:50:43 +02:00

33 lines
460 B
Plaintext

meta {
name: Create
type: http
seq: 1
}
post {
url: {{API_URL}}/v1/changelog/commit
body: json
auth: bearer
}
auth:bearer {
token: abc123
}
body:json {
[
{
"changelogId": "6a14f436-6596-474b-b615-f6e923582c1b",
"commit": "abc123",
"parent": "abc122",
"subject": "some",
"author": {
"name": "asd",
"email": "hello@hashdot.co",
"date": "somedate"
},
"body": ""
}
]
}