DELETE
github_releases_delete.py
Requires
repo, read:user.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Delete a release. The Git tag survives — use git_refs_delete on tags/NAME to remove that too.
from charter.packs import github
result = await github.releases_delete.ainvoke({"owner": ..., "repo": ..., "releaseId": ...})
repo, read:user.| 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. |
releaseId * | integer | The unique identifier of the release. |
Was this page helpful?