Run a workflow manually
Open the workflow from the Workflows list and click Run workflow. In the dialog:- Repositories — select one or more connected repositories to run against. The button stays disabled until you pick at least one.
- Git ref (optional) — a branch, tag, or commit. It’s applied to every selected repository, so leave it empty unless they share the ref you want. Empty means each repository’s own default branch.
- Click Run workflow.
Firing a workflow manually cancels any earlier manual runs of that workflow still pending or
running. It does not touch runs started by a pull request. See
superseding in-flight runs.
Run it automatically
Add a pull request trigger and Console fires the workflow whenever a pull request in the selected repositories is opened, reopened, or updated with new commits. Automatic runs always use the pull request’s head commit.Follow a run
From a workflow, click View runs. From anywhere, the Runs page lists every run in your organization; filter it by status or by workflow name. Open a run to see:- The chain — each step drawn in order with its agent name, how long it took, and its status icon. Steps light up as they complete, so you can watch progress on a running workflow.
- Findings — what the run confirmed, linked through to the full finding.
- Outputs — each configured destination and whether it was delivered. See checking delivery.
- Go to workflow — jump back to the definition that produced this run.
Run statuses
Cancel a run
Open the run and click Cancel. Console stops the agent chain and tears down the sandbox. Cancelling doesn’t undo anything already done — findings recorded before the cancellation stay, and any output already delivered stays delivered. If a merge gate was posted, a cancelled run leaves it blocking rather than passing.Reading a failed run
A run ending in Error stops at the failing step. Open it and look at the chain: the step with the error icon is where it stopped, and everything to its right never ran. Common causes:- The repository couldn’t be cloned. Usually a permissions problem — confirm the Console GitHub App
is still installed for that repository, or that a
Git refyou pinned actually exists. - A step exceeded its time budget. Long chains against large repositories can run out of budget. Splitting a broad scan into a narrower profile (see scanning agents) usually resolves it.
- A step named an agent that no longer exists. If you deleted an agent your workflow references, edit the workflow and repair the chain.
Run history at a glance
The Workflows list shows a run count per workflow, and you can switch the window between 7d, 30d, and 90d to see how often each one has been firing.Next steps
Configure outputs
Push results to pull requests automatically.
Tune the agent chain
Adjust scan depth and sequencing.
