Status badges
Every project has a public pipeline-status badge — an SVG that reflects the latest pipeline on the default branch. It needs no authentication, so it works in a public README.
Add it to your README
Copy the snippet from Project → Settings → Badge, or build it yourself. The badge URL is:
https://depllo.forjio.com/api/v1/public/badges/<badgeToken>/pipeline.svg
Markdown:
[](https://depllo.forjio.com/dashboard/projects/<projectId>)
<badgeToken>is a random public slug for the project (safe to expose — it grants nothing but the badge). Find it on the settings page.<projectId>is the project's id (proj_…), so clicking the badge opens the project.
What it shows
The badge renders the status of the most recent default-branch pipeline:
- passing — the latest pipeline succeeded.
- failing — the latest pipeline failed.
- running — a pipeline is in progress.
- unknown — no default-branch pipeline yet.
The SVG is generated on the fly, so it always reflects the current state — no caching config required on your side.