prefect.projects.steps.pull
¶
Core set of steps for specifying a Prefect project pull step.
git_clone_project
¶
Clones a git repository into the current working directory.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
repository |
str
|
the URL of the repository to clone |
required |
branch |
str
|
the branch to clone; if not provided, the default branch will be used |
None
|
access_token |
str
|
an access token to use for cloning the repository; if not provided the repository will be cloned using the default git credentials |
None
|
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
a dictionary containing a |
Raises:
Type | Description |
---|---|
subprocess.CalledProcessError
|
if the git clone command fails for any reason |
Source code in src/prefect/projects/steps/pull.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
set_working_directory
¶
Sets the working directory; works with both absolute and relative paths.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
directory |
str
|
the directory to set as the working directory |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
a dictionary containing a |
Source code in src/prefect/projects/steps/pull.py
11 12 13 14 15 16 17 18 19 20 21 22 23 |
|