Skip to main content
POST
/
api
/
v1
/
test-runs
/
skip
Skip Test Run
curl --request POST \
  --url https://dash.empirical.run/api/v1/test-runs/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>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.empirical.run/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key from the Empirical dashboard.

Body

application/json

Repository and commit to skip.

repo
string
required
commit_sha
string
required
environment
string

Response

Test run skipped. check_run_id is the ID of the GitHub check run created as skipped, or null if no GitHub reporter app is installed for the repo.

data
object
required