Skip to main content
POST
/
api
/
v1
/
git-checks
/
skip
Skip Git Check
curl --request POST \
  --url https://dash.empirical.run/api/v1/git-checks/skip \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "repo": "<string>",
  "commit_sha": "<string>",
  "environment": "<string>"
}
'
{
  "data": {
    "check_run_id": 123,
    "status": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key from the Empirical dashboard.

Body

application/json

Repository and commit to skip.

repo
string
required

Full repository name in owner/repo format.

commit_sha
string
required

Full Git commit SHA.

environment
string

Environment slug.

Response

Check run created as skipped.

data
object
required