From 338a6bd6edbb8bbdfbd41be31e5b2269ce096d97 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 31 Dec 2023 02:43:52 +0000 Subject: [PATCH] chore: self mutation Signed-off-by: github-actions --- .projenrc.ts | 4 +--- docs/index.html | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.projenrc.ts b/.projenrc.ts index bbdf601..ae551ed 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -46,9 +46,7 @@ const project = new Node20GitHubActionTypescriptProject({ }, }, - deps: [ - "@octokit/webhooks-types", - ], + deps: ["@octokit/webhooks-types"], autoApproveOptions: { allowedUsernames: ["dkershner6"], diff --git a/docs/index.html b/docs/index.html index 83021a4..385374c 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,5 +1,5 @@ reaction-action

reaction-action

Issue or Pull Request Comment Reaction

React to any comment with the GitHub Reaction types.

-

Usage

- name: React to comment
uses: dkershner6/reaction-action@latest # You can also use a specific version, e.g. v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
commentId: 1234 # Optional if the trigger is a comment. Use another action to find this otherwise.
reaction: "hooray" # Optional, defaults to +1 +

Usage

- name: React to comment
uses: dkershner6/reaction-action@v2 # You can also use a specific version, e.g. v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
commentId: 1234 # Optional if the trigger is a comment. Use another action to find this otherwise.
reaction: "hooray" # Optional, defaults to +1

Valid reactions (if this is incomplete, please open an issue)

const VALID_REACTIONS = [
'+1',
'-1',
'laugh',
'confused',
'heart',
'hooray',
'rocket',
'eyes',
];