Skip to main content
Glama

mcp-google-sheets

lock-issue.ts1.6 kB
import { githubAuth } from '../../index'; import { createAction, Property } from '@activepieces/pieces-framework'; import { githubApiCall, githubCommon } from '../common'; import { HttpMethod } from '@activepieces/pieces-common'; export const githubLockIssueAction = createAction({ auth: githubAuth, name: 'lockIssue', displayName: 'Lock issue', description: 'Locks the specified issue', props: { repository: githubCommon.repositoryDropdown, issue_number: Property.Number({ displayName: 'Issue Number', description: 'The number of the issue to be locked', required: true, }), lock_reason: Property.Dropdown< 'off-topic' | 'too heated' | 'resolved' | 'spam' | undefined >({ displayName: 'Lock Reason', description: 'The reason for locking the issue', required: false, refreshers: [], options: async () => { return { options: [ { value: 'off-topic', label: 'Off-topic' }, { value: 'too heated', label: 'Too heated' }, { value: 'resolved', label: 'Resolved' }, { value: 'spam', label: 'Spam' }, ], }; }, }), }, async run({ auth, propsValue }) { const { issue_number, lock_reason } = propsValue; const { owner, repo } = propsValue.repository!; const response = await githubApiCall({ accessToken: auth.access_token, method: HttpMethod.PUT, resourceUri: `/repos/${owner}/${repo}/issues/${issue_number}/lock`, body: { lock_reason, }, }); return response; }, });

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/activepieces/activepieces'

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