curl --request POST \
--url https://api.mesa.dev/api/v1/{org}/{repo}/commits \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"branch": "<string>",
"message": "<string>",
"author": {
"name": "<string>",
"email": "jsmith@example.com",
"date": "<string>"
},
"files": [
{
"path": "<string>",
"content": "<string>",
"encoding": "utf-8",
"action": "<string>",
"mode": "100644"
}
],
"committer": {
"name": "<string>",
"email": "jsmith@example.com",
"date": "<string>"
},
"base_sha": "<string>"
}
'