uncommitted
This module checks for uncommitted git changes
Installation
dagger install github.com/leonardoce/daggerverse/uncommitted@bfb272fa0a70b90de23a403c6d4d9221c67a7c4c
Entrypoint
Return Type
Uncommitted !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
image | String | "python:3.12.4-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)
}