Interface DependabotRegistry

    • Method Detail

      • getType

        @Stability(Experimental)
        @NotNull
        DependabotRegistryType getType()
        (experimental) Registry type e.g. 'npm-registry' or 'docker-registry'.
      • getUrl

        @Stability(Experimental)
        @NotNull
        String getUrl()
        (experimental) Url for the registry e.g. 'https://npm.pkg.github.com' or 'registry.hub.docker.com'.
      • getKey

        @Stability(Experimental)
        @Nullable
        default String getKey()
        (experimental) A reference to a Dependabot secret containing an access key for this registry.

        Default: undefined

      • getPassword

        @Stability(Experimental)
        @Nullable
        default String getPassword()
        (experimental) A reference to a Dependabot secret containing the password for the specified user.

        Default: undefined

      • getReplacesBase

        @Stability(Experimental)
        @Nullable
        default Boolean getReplacesBase()
        (experimental) For registries with type: python-index, if the boolean value is true, pip esolves dependencies by using the specified URL rather than the base URL of the Python Package Index (by default https://pypi.org/simple).

        Default: undefined

      • getToken

        @Stability(Experimental)
        @Nullable
        default String getToken()
        (experimental) Secret token for dependabot access e.g. '${{ secrets.DEPENDABOT_PACKAGE_TOKEN }}'.

        Default: undefined

      • getUsername

        @Stability(Experimental)
        @Nullable
        default String getUsername()
        (experimental) The username that Dependabot uses to access the registry.

        Default: - do not authenticate