utils.ts 247 B

1234567
  1. import { ChartTypeWithExtendedConfig } from "shared/types";
  2. export const isDeployedFromGithub = (release: ChartTypeWithExtendedConfig) => {
  3. const githubRepository = release?.git_action_config?.git_repo;
  4. return !!githubRepository?.length;
  5. };