Comment on the Issue #30
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Comment on New 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@v4 | |
| - name: Run Comment Action | |
| uses: recursivezero/action-club/.github/actions/comment-on-issue@v0.2.57 | |
| with: | |
| issue_number: ${{ github.event.inputs.issue_number }} | |
| comment_body: ${{ github.event.inputs.comment_body }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |