Skip to content

Naming Guidelines

Tim Etchells edited this page Sep 13, 2021 · 4 revisions

Secret Names

All the secret names should follow CONSTANT_CASE convention.

Below are the names of the secrets that we currently use in our workflows:

  • REGISTRY_USER: Username for the image registry.
  • REGISTRY_PASSWORD: Password or token for the image registry.
  • OPENSHIFT_SERVER: Openshift API Server URL.
  • OPENSHIFT_TOKEN: Openshift Bearer Token.
  • OPENSHIFT_USER: Openshift username.
  • OPENSHIFT_PASSWORD: Openshift Password.

Input and Output names

When naming Inputs and Outputs, use snake_case.

Some actions were written with kebab-case, so they remain that way. Actions must be internally consistent with their naming.

Similarly, when writing workflows, try to use snake case for job and step IDs.

Clone this wiki locally