Skip to content

v1.0.0

Choose a tag to compare

@JonaszJestem JonaszJestem released this 08 May 14:53

First public release of the Checksum AI test-run action.

Quick start

```yaml

  • uses: checksum-ai/test-run-action@v1
    with:
    api-key: ${{ secrets.CHECKSUM_API_KEY }}
    grep: 'checkout'
    auto-heal: true
    ```

What it does

Wraps the Checksum AI public-API execution endpoints in a single GitHub Action.
Supports four execution modes (`grep`, `suite-ids`, `test-ids`, `collection-id`),
optional auto-heal-on-failure, and optional opt-in polling that mirrors the
test-run terminal status into the workflow's exit code.

Highlights

  • Auto-resolves `repo-name` from `github.repository` and `pr-number` from the
    workflow event (PR payload on `pull_request`, GH API lookup on `push`).
  • Fire-and-forget by default (~15s); heal results arrive via the standard
    Checksum PR-comment pipeline.
  • Set `wait: true` to make the action poll status until terminal and exit
    green/red based on the run outcome.

See the README for
the full input/output reference.