mirror of
https://github.com/harness/drone.git
synced 2025-09-04 19:37:44 +00:00
12 lines
212 B
Plaintext
12 lines
212 B
Plaintext
def main(ctx):
|
|
print(ctx.build)
|
|
print(ctx.build.commit)
|
|
print(ctx.repo)
|
|
print(ctx.repo.namespace)
|
|
print(ctx.repo.name)
|
|
return {
|
|
'kind': 'pipeline',
|
|
'type': 'docker',
|
|
'name': 'default'
|
|
}
|