Forgejo icon

Forgejo

Interact with Forgejo API

Overview

This node operation lists comments on a specific issue within a repository on Forgejo. It is useful for retrieving all comments associated with an issue, which can help in tracking discussions, feedback, or updates related to that issue. For example, a user can automate the retrieval of issue comments to monitor project progress or gather user feedback.

Use Case Examples

  1. List all comments on issue number 42 in the 'my-repo' repository owned by 'my-org'.
  2. Fetch comments on a specific issue to analyze user feedback or developer discussions.

Properties

Name Meaning
Owner The username or organization that owns the repository where the issue exists.
Repository The name of the repository containing the issue.
Issue Number The number identifier of the issue for which comments are to be listed.
Additional Options Optional parameters to control pagination such as page number and limit of results per page.

Output

JSON

  • json - The JSON array of comments retrieved from the issue.

Dependencies

  • Requires an API key credential for Forgejo API authentication.

Troubleshooting

  • Ensure the 'Owner', 'Repository', and 'Issue Number' fields are correctly set to avoid 404 errors.
  • Pagination parameters should be set carefully to avoid missing comments or excessive data retrieval.
  • API rate limits may affect the ability to retrieve large numbers of comments; handle errors accordingly.

Links

Discussion