How To: Disable status updates to GitHub

This article describes how to stop status update to GitHub from a pipeline.

NOTE
Disabling status updates to GitHub is currently supported only via CLI for Codefresh pipelines.

Before you begin

How to

  1. Export the full pipeline spec as a YAML file:
    codefresh get pipeline <project_name/pipeline_name> -o yaml > pipeline_name_spec.yaml to
  2. Below spec, add options and then add enableNotifications: false, as in the example below.

     version: '1.0'
     kind: pipeline
     metadata:
     spec:
       options:
         enableNotifications: false
    
  3. Save the changes and close the YAML.
  4. Run the codefresh replace pipeline -f pipeline_name_spec.yaml to update your pipeline with the specifications from the YAML file.