Skip to content
Snippets Groups Projects
Select Git revision
  • 996bfe87ff462b24c2f03553db8b164a476ca301
  • main default protected
  • release/v2.6.x
  • dependabot/github_actions/ci-641206964f
  • conform-k8s-1.33
  • rfc-external-artifact
  • release/v2.5.x
  • release/v2.4.x
  • remove-notation-validation
  • release/v2.3.x
  • release/v2.2.x
  • RFC
  • fix-commit-log
  • flux-audit
  • release/v2.1.x
  • context-ns
  • ksm-dashboard
  • rfc-passwordless-git-auth
  • release/v2.0.x
  • rfc-gating
  • release/v0.27.4
  • v2.6.4 protected
  • v2.6.3 protected
  • v2.6.2 protected
  • v2.6.1 protected
  • v2.6.0 protected
  • v2.5.1 protected
  • v2.5.0 protected
  • v2.4.0 protected
  • v2.3.0 protected
  • v2.2.3 protected
  • v2.2.2 protected
  • v2.2.1 protected
  • v2.2.0 protected
  • v2.1.2 protected
  • v2.1.1 protected
  • v2.1.0 protected
  • v2.0.1 protected
  • v2.0.0 protected
  • v2.0.0-rc.5 protected
  • v2.0.0-rc.4 protected
41 results

ecdsa_curve.go

Blame
  • common.ts 674 B
    import { PrBodyUpgrade, PrBodyConfig } from './pr/body/common';
    import { PackageDependency } from '../manager/common';
    import { ChangeLogConfig } from './pr/changelog';
    import { RenovateSharedConfig } from '../config';
    import { StabilityConfig, UnpublishableConfig } from './branch/status-checks';
    import { CommitConfig } from './branch/commit';
    
    export type PrUpgrade = PrBodyUpgrade &
      PackageDependency &
      ChangeLogConfig &
      PrBodyConfig & {
        manager?: string;
        hasUrls?: boolean;
        githubName?: string | undefined;
      };
    
    export type BranchConfig = RenovateSharedConfig &
      StabilityConfig &
      UnpublishableConfig &
      CommitConfig &
      PrBodyConfig<PrUpgrade>;