diff --git a/README.md b/README.md index 4227b06..e7d934f 100644 --- a/README.md +++ b/README.md @@ -176,12 +176,14 @@ Supports null in JSON format. -| ID | Description | -| :----------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `continue` | Indicates whether the IssueOps command was triggered and the workflow should continue with the string `"true"`. If the action did not complete successfully, `"false"` will be used. | -| `params` | The parameters of the triggered IssueOps command, provided as a JSON string. | -| `comment_id` | The ID of the comment that triggered this action. | -| `actor` | The GitHub handle of the actor who executed the IssueOps command. | +| ID | Description | +| :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `continue` | Indicates whether the IssueOps command was triggered and the workflow should continue with the string `"true"`. If the action did not complete successfully, `"false"` will be used. | +| `params` | The parameters of the triggered IssueOps command, provided as a JSON string. | +| `comment_id` | The ID of the comment that triggered this action. | +| `actor` | The GitHub handle of the actor who executed the IssueOps command. | +| `issue_number` | The issue number of the comment that triggered this action. | +| `command` | The command of the triggered IssueOps command. | diff --git a/action.yaml b/action.yaml index 2d11ca6..e4a5f04 100644 --- a/action.yaml +++ b/action.yaml @@ -22,6 +22,10 @@ outputs: description: 'The ID of the comment that triggered this action.' actor: description: 'The GitHub handle of the actor who executed the IssueOps command.' + issue_number: + description: 'The issue number of the comment that triggered this action.' + command: + description: 'The command of the triggered IssueOps command.' runs: using: 'node20'