Dagger
Search

uncommitted

This module checks for uncommitted git changes

Installation

dagger install github.com/fcanovai/daggerverse/uncommitted@19ae5b3e50f083b9adce06579fef730512589425

Entrypoint

Return Type
Uncommitted !
Arguments
NameTypeDescription
imageString Python image to use.
Example
func (m *myModule) example() *Uncommitted  {
	return dag.
			Uncommitted()
}
@function
def example() -> dag.Uncommitted:
	return (
		dag.uncommitted()
	)
@func()
example(): Uncommitted {
	return dag
		.uncommitted()
}

Types

Uncommitted

checkUncommitted()

CheckUncommitted runs check_uncommitted_git_changes

Example usage: dagger call check-uncommitted –source /path/to/your/repo

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
dagger -m github.com/fcanovai/daggerverse/uncommitted@19ae5b3e50f083b9adce06579fef730512589425 call \
 check-uncommitted --source DIR_PATH
func (m *myModule) example(source *Directory) *Container  {
	return dag.
			Uncommitted().
			CheckUncommitted(source)
}
@function
def example(source: dagger.Directory) -> dagger.Container:
	return (
		dag.uncommitted()
		.check_uncommitted(source)
	)
@func()
example(source: Directory): Container {
	return dag
		.uncommitted()
		.checkUncommitted(source)
}