Actions73
- Repository Actions
- Issue Actions
- Pull Request Actions
- User Actions
- Organization Actions
- Release Actions
- Webhook Actions
- Branch Actions
- Commit Actions
- Tag Actions
Overview
This node interacts with the Forgejo API to perform various operations related to users, repositories, issues, pull requests, organizations, releases, webhooks, branches, tags, and commits. Specifically, for the 'User' resource and 'Get Repositories' operation, it fetches the list of repositories belonging to a specified user. This is useful for scenarios where you want to automate the retrieval of user repositories for analysis, reporting, or integration with other systems.
Use Case Examples
- Retrieve all repositories of a specific user to display in a dashboard.
- Automate the process of backing up repository metadata for a user.
- Integrate user repository data into a project management tool.
Properties
| Name | Meaning |
|---|---|
| Username | The username of the user whose repositories are to be retrieved. This is a required string input. |
Output
JSON
json- The JSON response containing the list of repositories for the specified user.
Dependencies
- Requires an API key credential for Forgejo API authentication.
Troubleshooting
- Ensure the 'Username' parameter is correctly specified and the user exists in the Forgejo instance.
- Check that the API credentials are valid and have sufficient permissions to access user repository data.
- If pagination parameters are used, verify that page and limit values are within acceptable ranges.
Links
- Forgejo API Documentation - Official API documentation for Forgejo, useful for understanding available endpoints and parameters.