uncommitted
This module checks for uncommitted git changes
Installation
dagger install github.com/fcanovai/daggerverse/uncommitted@ecd31bc86ff0d416f2cecd2c7c5dad5770941cd8
Entrypoint
Return Type
Uncommitted !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
image | String | "python:3.12.6-alpine" | Python image to use. renovate image: datasource=docker depName=python versioning=docker |
Example
func (m *myModule) 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
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | No description provided |
Example
func (m *myModule) example(source *Directory) *Container {
return dag.
Uncommitted().
CheckUncommitted(source)
}