Skip to content

Commit c88e35f

Browse files
committed
feat(jira): add jira:update command to post PR summaries or plain notes as Jira comments
1 parent ef00907 commit c88e35f

5 files changed

Lines changed: 464 additions & 3 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"name": "jira",
2121
"source": "./plugins/jira",
2222
"description": "A plugin to automate tasks with Jira",
23-
"version": "0.3.9"
23+
"version": "0.4.0"
2424
},
2525
{
2626
"name": "ci",

PLUGINS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ A plugin to automate tasks with Jira
221221
- **`/jira:solve`** - Analyze a JIRA issue and create a pull request to solve it.
222222
- **`/jira:status-rollup` `issue-id [--start-date YYYY-MM-DD] [--end-date YYYY-MM-DD]`** - Generate a status rollup comment for any JIRA issue based on all child issues and a given date range
223223
- **`/jira:update-weekly-status` `[project-key] [--component name] [--label label-name] [user-filters...]`** - Update weekly status summaries for Jira issues with component and user filtering
224+
- **`/jira:update` `<jira-ticket> [<pr-url>] [--format standup|detailed] [additional-context]`** - Post a PR summary or a plain note as a comment on a Jira ticket
224225
- **`/jira:validate-blockers` `[target-version] [component-filter] [--bug issue-key]`** - Validate proposed release blockers using Red Hat OpenShift release blocker criteria
225226

226227
See [plugins/jira/README.md](plugins/jira/README.md) for detailed documentation.

docs/data.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,12 @@
186186
"name": "update-weekly-status",
187187
"synopsis": "/jira:update-weekly-status [project-key] [--component <component-name>] [--label <label-name>] [user-filters...]"
188188
},
189+
{
190+
"argument_hint": "<jira-ticket> [<pr-url>] [--format standup|detailed] [additional-context]",
191+
"description": "Post a PR summary or a plain note as a comment on a Jira ticket",
192+
"name": "update",
193+
"synopsis": "/jira:update <jira-ticket> [<pr-url>] [--format standup|detailed] [additional-context]"
194+
},
189195
{
190196
"argument_hint": "[target-version] [component-filter] [--bug issue-key]",
191197
"description": "Validate proposed release blockers using Red Hat OpenShift release blocker criteria",
@@ -289,7 +295,7 @@
289295
"name": "Jira Status Analysis Engine"
290296
}
291297
],
292-
"version": "0.3.9"
298+
"version": "0.4.0"
293299
},
294300
{
295301
"commands": [

plugins/jira/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jira",
33
"description": "A plugin to automate tasks with Jira",
4-
"version": "0.3.9",
4+
"version": "0.4.0",
55
"author": {
66
"name": "github.com/openshift-eng"
77
}

0 commit comments

Comments
 (0)