Skip to content

[RTY-260041]: Handling the various Device Responsiveness #36

[RTY-260041]: Handling the various Device Responsiveness

[RTY-260041]: Handling the various Device Responsiveness #36

name: "Comment on the Issue"
on:
issues:
types: [opened]
workflow_dispatch:
inputs:
issue_number:
description: "Issue number"
required: true
type: number
comment_body:
description: "Comment text"
required: true
type: string
permissions:
issues: write
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Run Comment Action
uses: recursivezero/action-club/.github/actions/comment-on-issue@main
with:
issue_number: ${{ github.event.inputs.issue_number }}
comment_body: ${{ github.event.inputs.comment_body }}
github_token: ${{ secrets.GITHUB_TOKEN }}