Skip to main content
Glama
client_actions.go779 B
// This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. // // Copyright © 2025 Ronmi Ren <ronmi.ren@gmail.com> package tools import ( "fmt" "github.com/raohwork/forgejo-mcp/types" ) // MyListActionTasks lists all Forgejo Actions tasks in a repository. // GET /repos/{owner}/{repo}/actions/tasks func (c *Client) MyListActionTasks(owner, repo string) (*types.MyActionTaskResponse, error) { endpoint := fmt.Sprintf("/api/v1/repos/%s/%s/actions/tasks", owner, repo) var result types.MyActionTaskResponse err := c.sendSimpleRequest("GET", endpoint, nil, &result) if err != nil { return nil, err } return &result, nil }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/raohwork/forgejo-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server