🚀 Depot CI is here — a new CI engine, fast by design
← Back to changelog

Depot CI now sets a DEPOT_JOB_URL environment variable in every job containing a direct link to that job's page in the Depot UI. You can use it in notifications, Slack messages, or any step that needs to surface a link to the current run.

For example:

- name: Notify Slack
  run: |
    curl -X POST $SLACK_WEBHOOK \
      -d "{\"text\": \"Build finished: $DEPOT_JOB_URL\"}"