# Inbox Add Reaction

> Add a reaction to a GitHub issue or pull request

- Skill: `microsoft/inbox-add-reaction` (Agent Skill)
- Install (CLI): `npx skillmds@latest add microsoft/inbox-add-reaction`
- Raw SKILL.md: https://api.skillmd.com/api/skills/microsoft/inbox-add-reaction/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Microsoft (https://skillmd.com/u/microsoft)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/microsoft/inbox-add-reaction

---


# Add Reaction

Add an emoji reaction to an issue or pull request.

## Command

```
gh api --method POST /repos/{owner}/{repo}/issues/{number}/reactions -f content={reaction}
```

## Available reactions

- `+1` (thumbs up 👍)
- `-1` (thumbs down 👎)
- `laugh` (😄)
- `confused` (😕)
- `heart` (❤️)
- `hooray` (🎉)
- `rocket` (🚀)
- `eyes` (👀)

Replace `{owner}`, `{repo}`, `{number}`, and `{reaction}` with the appropriate values. Note: this endpoint works for both issues and pull requests (PRs are issues in GitHub's API).

