[llvm] [GitHub] React to /test-suite comment (PR #203151)

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 11 00:13:02 PDT 2026


================
@@ -39,6 +34,24 @@ jobs:
           LLVM_TOKEN_GENERATOR_CLIENT_ID: ${{ secrets.LLVM_TOKEN_GENERATOR_CLIENT_ID }}
           LLVM_TOKEN_GENERATOR_PRIVATE_KEY: ${{ secrets.LLVM_TOKEN_GENERATOR_PRIVATE_KEY }}
 
+  react-to-comment:
+    needs:
+      - permission-check
+    runs-on: ubuntu-24.04
+    permissions:
+      pull-requests: write
+    steps:
+      - name: Thumbs up comment
+        uses: actions/github-script at 3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
+        with:
+          script: |
+            github.rest.reactions.createForIssueComment({
+              owner: context.repo.owner,
+              repo: context.repo.repo,
+              comment_id: context.payload.comment.id,
+              content: '+1'
----------------
lukel97 wrote:

Yeah +1 produces the thumbs up emoji

https://github.com/llvm/llvm-project/pull/203151


More information about the llvm-commits mailing list