gitlab
GitLab CI/CD Status Codes
Status values returned in the `status` field of GitLab's Pipelines and Jobs REST API, and shown in the pipeline/job UI, describing where a pipeline or job is in its lifecycle.
12 codes
references docs.gitlab.com/ee/api/pipelines.htmldocs.gitlab.com/ee/api/jobs.htmldocs.gitlab.com/ee/ci/jobs/job_control.html
· All codes 12 codes
- canceled Canceled The pipeline or job was stopped before it finished, either manually or by an automatic interrupt rule (e.g. a newer pipeline superseding it).
- canceling Canceling A cancellation request has been received and the pipeline or job is in the process of being stopped.
- created Created The pipeline or job has been created but has not yet been queued for execution.
- failed Failed The pipeline or job completed but at least one script step exited with a non-zero status, or the job errored before it could run.
- manual Manual The job is defined with `when: manual` and is waiting for a user to trigger it explicitly from the pipeline UI or API.
- pending Pending The job is queued and waiting for an available runner to pick it up.
- preparing Preparing A runner has picked up the job and is preparing the environment before execution starts.
- running Running A runner is currently executing the job.
- scheduled Scheduled The job is defined with `when: delayed` and is waiting for its configured start_in delay to elapse before running.
- skipped Skipped The job was not run because its `rules`, `only`/`except`, or `needs` conditions were not met, or an upstream dependency failed.
- success Success The pipeline or job completed and every script step exited with status 0.
- waiting_for_resource Waiting For Resource The job is waiting for a resource in its resource_group to become free before it can start.