Dagger
Search

update-claims-features

No long description provided.

Installation

dagger install github.com/prefapp/daggerverse/update-claims-features@7f605e23e73619caa5a4531d44a9465cb1636776

Entrypoint

Return Type
UpdateClaimsFeatures
Example
func (m *myModule) example() *UpdateClaimsFeatures  {
	return dag.
			UpdateClaimsFeatures()
}

Types

UpdateClaimsFeatures 🔗

repo() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			UpdateClaimsFeatures().
			Repo(ctx)
}

ghToken() 🔗

Return Type
Secret !
Example
func (m *myModule) example() *Secret  {
	return dag.
			UpdateClaimsFeatures().
			GhToken()
}

ghCliVersion() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			UpdateClaimsFeatures().
			GhCliVersion(ctx)
}

claimsDirPath() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			UpdateClaimsFeatures().
			ClaimsDirPath(ctx)
}

claimsDir() 🔗

Return Type
Directory !
Example
func (m *myModule) example() *Directory  {
	return dag.
			UpdateClaimsFeatures().
			ClaimsDir()
}

defaultBranch() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			UpdateClaimsFeatures().
			DefaultBranch(ctx)
}

componentsFolderName() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			UpdateClaimsFeatures().
			ComponentsFolderName(ctx)
}

new() 🔗

Return Type
UpdateClaimsFeatures !
Arguments
NameTypeDefault ValueDescription
claimsDirDirectory !-No description provided
claimsDirPathString !-Claims dir path
ghTokenSecret !-GitHub token
ghCliVersionString "v2.66.1"Gh CLI Version
repoString !-Claims repo name
defaultBranchString "main"Name of the default branch of the claims repo
componentsFolderNameString "components"Name of the components folder name
Example
func (m *myModule) example(claimsDir *Directory, claimsDirPath string, ghToken *Secret, repo string) *UpdateClaimsFeatures  {
	return dag.
			UpdateClaimsFeatures().
			New(claimsDir, claimsDirPath, ghToken, repo)
}

updateAllClaimFeatures() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			UpdateClaimsFeatures().
			UpdateAllClaimFeatures(ctx)
}

mergePullRequest() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
prLinkString !-No description provided
Example
func (m *myModule) example(ctx context.Context, prLink string)   {
	return dag.
			UpdateClaimsFeatures().
			MergePullRequest(ctx, prLink)
}