[ISSUE #1014]📝Update README.md #423
Workflow file for this run
This file contains 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: Auto Comment on PR | |
on: | |
pull_request_target: | |
types: [ opened, synchronize ] | |
branches: [ main ] | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Create a comment | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.PAT }} | |
script: | | |
const { owner, repo, number: issue_number } = context.issue; | |
const commentBody = "🚀Thanks for your contribution🎉. CodeRabbit(AI) will review your code first🔥"; | |
github.rest.issues.createComment({ | |
owner, | |
repo, | |
issue_number, | |
body: commentBody | |
}); | |
github.rest.issues.addLabels({ | |
owner, | |
repo, | |
issue_number, | |
labels: ['ready to review','auto merge'] | |
}); |