boring.tools-poc/bruno/Changelog/Commit/Create.bru
Lars Hampe 625b463287
Some checks failed
Build and Push Docker Image / tests (push) Successful in 47s
Build and Push Docker Image / build (push) Failing after 1m1s
feat: add version create with commit select
2024-10-29 21:25:21 +01: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: asd123
}
body:json {
[
{
"changelogId": "6a14f436-6596-474b-b615-f6e923582c1b",
"commit": "abc123",
"parent": "abc122",
"subject": "some",
"author": {
"name": "asd",
"email": "hello@hashdot.co",
"date": "somedate"
},
"body": ""
}
]
}