PATCH
github_issues_update_milestone.py
from charter.packs import github
result = await github.issues_update_milestone.ainvoke({"owner": ..., "repo": ..., "milestoneNumber": ...})
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. |
milestoneNumber * | integer | The number that identifies the milestone. |
Body
| Field | Type | Description |
|---|---|---|
title | string | The title of the milestone. |
state | PullUpdateState | The state of the milestone. |
description | string | A description of the milestone. |
dueOn | string | The milestone due date. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ. format date-time |