@@ -25,7 +25,7 @@ A new GitHub Action has been created in the `augment-agent` repository that can
2525### Key Features
2626
2727- ✅ React to PR review comments
28- - ✅ React to issue comments
28+ - ✅ React to issue comments
2929- ✅ Support for all 8 GitHub reaction types (+1, -1, laugh, confused, heart, hooray, rocket, eyes)
3030- ✅ Configurable reaction type with sensible default (eyes)
3131- ✅ Full TypeScript implementation with type safety
@@ -73,17 +73,17 @@ Replace the existing `actions/github-script@v7` step (lines 31-53) with:
7373
7474# # Inputs
7575
76- | Input | Description | Required | Default |
77- |-------| -------------| ----------| --------- |
78- | `github_token` | GitHub token for API access | Yes | - |
79- | `comment_id` | The ID of the comment to react to | Yes | - |
80- | `event_name` | The GitHub event name | Yes | - |
81- | `reaction` | The reaction type to add | No | `eyes` |
76+ | Input | Description | Required | Default |
77+ | -------------- | --------------------------------- | -------- | ------- |
78+ | `github_token` | GitHub token for API access | Yes | - |
79+ | `comment_id` | The ID of the comment to react to | Yes | - |
80+ | `event_name` | The GitHub event name | Yes | - |
81+ | `reaction` | The reaction type to add | No | `eyes` |
8282
8383# # Outputs
8484
85- | Output | Description |
86- |--------| -------------|
85+ | Output | Description |
86+ | --------- | --------------------------------------------------------------- |
8787| `success` | Whether the reaction was successfully added (`true` or `false`) |
8888
8989# # Supported Reactions
@@ -135,19 +135,18 @@ jobs:
135135 repository: ${{ github.repository }}
136136 token: ${{ secrets.GITHUB_TOKEN }}
137137 ref: ${{ github.event.pull_request.head.ref }}
138-
138+
139139 - name: React to original comment with eyes
140140 uses: augmentcode/augment-agent/comment-reaction@feature/comment-reaction-action
141141 with:
142142 github_token: ${{ secrets.GITHUB_TOKEN }}
143143 comment_id: ${{ github.event.comment.id }}
144144 event_name: ${{ github.event_name }}
145145 reaction: eyes
146-
146+
147147 # ... rest of your workflow steps
148148` ` `
149149
150150# # Support
151151
152152For issues or questions, please refer to the README.md in the comment-reaction directory or create an issue in the augment-agent repository.
153-
0 commit comments