gh
No long description provided.
Installation
dagger install github.com/aweris/daggerverse/gh@0640e36c1a3e3be5bc8becb2c1a95ced6683002eEntrypoint
Return Type
Gh Example
dagger -m github.com/aweris/daggerverse/gh@0640e36c1a3e3be5bc8becb2c1a95ced6683002e call \
func (m *MyModule) Example() *dagger.Gh {
return dag.
Gh()
}@function
def example() -> dagger.Gh:
return (
dag.gh()
)@func()
example(): Gh {
return dag
.gh()
}Types
Gh 🔗
run() 🔗
Return Type
StringKind !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| version | StringKind ! | - | No description provided |
| token | StringKind ! | - | No description provided |
| args | [StringKind ! ] ! | - | No description provided |
Example
dagger -m github.com/aweris/daggerverse/gh@0640e36c1a3e3be5bc8becb2c1a95ced6683002e call \
runfunc (m *MyModule) Example(version , token , args ) {
return dag.
Gh().
Run(version, token, args)
}@function
def example(version: , token: , args: ) -> :
return (
dag.gh()
.run(version, token, args)
)@func()
example(version: , token: , args: ): {
return dag
.gh()
.run(version, token, args)
}getGithubCli() 🔗
Return Type
File !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| version | StringKind ! | - | No description provided |
Example
dagger -m github.com/aweris/daggerverse/gh@0640e36c1a3e3be5bc8becb2c1a95ced6683002e call \
get-github-clifunc (m *MyModule) Example(version ) {
return dag.
Gh().
GetGithubCli(version)
}@function
def example(version: ) -> :
return (
dag.gh()
.get_github_cli(version)
)@func()
example(version: ): {
return dag
.gh()
.getGithubCli(version)
}