workflow_issue_log_append
Appends issue details, status, and branch info to a local issue log markdown file. Does not create merge requests or commits.
Instructions
Use when only local issue log markdown should be appended. This tool does not create MR or commit.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_title | Yes | Issue title. | |
| issue_iid | Yes | Issue IID. | |
| issue_web_url | Yes | Issue web URL. | |
| branch_name | Yes | Code branch name. | |
| summary | Yes | Short issue summary. | |
| status | Yes | Status text. | |
| issue_project_id | No | Issue project ID. Omit this field unless the user explicitly provided a value. When omitted, the current runtime config value is used (WORKFLOW_ISSUE_PROJECT_ID overrides the built-in default when configured). If the runtime config is still unset, the tool returns a missing-parameter error. Do not infer or auto-generate this value. | |
| issue_project_path | No | Issue project path. Omit this field unless the user explicitly provided a value. When omitted, the current runtime config value is used (WORKFLOW_ISSUE_PROJECT_PATH overrides the built-in default when configured). If the runtime config is still unset, the tool returns a missing-parameter error. Do not infer or auto-generate this value. | |
| code_project_id | No | Code project ID. Omit this field unless the user explicitly provided a value. When omitted, the current runtime config value is used (WORKFLOW_CODE_PROJECT_ID overrides the built-in default when configured). If the runtime config is still unset, the tool returns a missing-parameter error. Do not infer or auto-generate this value. | |
| code_project_path | No | Code project path. Omit this field unless the user explicitly provided a value. When omitted, the current runtime config value is used (WORKFLOW_CODE_PROJECT_PATH overrides the built-in default when configured). If the runtime config is still unset, the tool returns a missing-parameter error. Do not infer or auto-generate this value. | |
| repo_path | Yes | Local repository path used as the base for resolving log_path. | |
| log_path | No | Issue log path. Omit this field unless the user explicitly provided a value. When omitted, the current runtime config value is used (WORKFLOW_ISSUE_LOG_PATH overrides the built-in default when configured). If the runtime config is still unset, the tool returns a missing-parameter error. Do not infer or auto-generate this value. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | Yes | Whether the tool call succeeded. | |
| tool | Yes | Tool name. | |
| data | No | Issue log append result. | |
| error_type | No | Error type when ok=false. | |
| message | No | Error message when ok=false. |