lando

Check the status of Lando landing jobs using Mozilla's Lando API. Use after submitting try pushes with mach try to verify if your commit has landed. Triggers on "lando status", "landing job", "check landing", "commit landed".

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "lando" with this command: npx skills add jwmossmoz/agent-skills/jwmossmoz-agent-skills-lando

Lando

Check the status of Mozilla Lando landing jobs using the public API.

Usage

# Check landing job status
curl -s "https://lando.services.mozilla.com/api/v1/landing_jobs/<JOB_ID>" | jq

# Example
curl -s "https://lando.services.mozilla.com/api/v1/landing_jobs/173397" | jq

# Check only the status field
curl -s "https://lando.services.mozilla.com/api/v1/landing_jobs/173397" | jq -r '.status'

# Poll every 90 seconds until landed or failed
JOB_ID=173397
while true; do
  STATUS=$(curl -s "https://lando.services.mozilla.com/api/v1/landing_jobs/$JOB_ID" | jq -r '.status')
  echo "$(date): $STATUS"
  [[ "$STATUS" == "landed" || "$STATUS" == "failed" ]] && break
  sleep 90
done

API Response

The API returns a JSON object with these key fields:

FieldDescription
statusJob status: submitted, in_progress, landed, failed
errorError message if status is failed
landed_commit_idCommit hash if successfully landed
created_atWhen the job was submitted
updated_atLast status update time

Common Statuses

  • submitted - Job is queued
  • in_progress - Currently being processed
  • landed - Successfully landed to the repository
  • failed - Landing failed (check error field)

Prerequisites

None - the API is publicly accessible. No authentication required for read operations.

Documentation

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

redash

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

os-integrations

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

worker-image-investigation

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

bigquery

No summary provided by upstream source.

Repository SourceNeeds Review