GET
github_actions_get_workflow.py
from charter.packs import github
result = await github.actions_get_workflow.ainvoke({"owner": ..., "repo": ..., "workflowId": ...})
Requires
repo, read:user.Path parameters
| Field | Type | Description |
|---|---|---|
owner * | string | The account owner of the repository. The name is not case sensitive. |
repo * | string | The name of the repository without the .git extension. The name is not case sensitive. |
workflowId * | integer | string | The ID of the workflow. You can also pass the workflow file name as a string, such as ci.yml, which is usually the one you have. |