Skip to content

Comment on PR

Comment on PR #5

name: Comment on PR
on:
workflow_dispatch:
jobs:
comment_pr:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
with:
message: |
/retest
pr_number: 45
- name: Comment using gh
run: |
gh pr comment 45 --body "/retest - gh"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}