Overview
You need to option to stop status update to github from a pipeline
Details
To disable status updates to Github, please follow these steps (it's currently supported only via CLI):
-
Install the Codefresh CLI: https://codefresh-io.github.io/cli/installation/
-
Authenticate the CLI to your Codefresh account: https://codefresh-io.github.io/cli/authentication/
-
Run
codefresh get pipeline <project_name/pipeline_name> -o yaml > pipeline_name_spec.yaml
to export the full pipeline spec as a YAML file -
Add the options section under
spec
, setenableNotifications: false
and save the changes. The updated YAML should look like this:
version: '1.0' kind: pipeline metadata: spec: options: enableNotifications: false
- Run the
codefresh replace pipeline -f pipeline_name_spec.yaml
to update your pipeline from the YAML file