[ISSUE #2060]Adding #[inline] for ConsumeQueueStore methods #1119
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.BOT_TOKEN }} | |
script: | | |
const { owner, repo, number: issue_number } = context.issue; | |
// Get PR creator's username | |
const prCreator = context.payload.pull_request.user.login; | |
const commentBody = ` | |
🔊@${prCreator} 🚀Thanks for your contribution🎉! | |
💡CodeRabbit(AI) will review your code first🔥! | |
> [!NOTE] | |
> | |
> 🚨The code review suggestions from CodeRabbit are to be used as a reference only, and the PR submitter can decide whether to make changes based on their own judgment. Ultimately, the project management personnel will conduct the final code review💥. | |
`; | |
github.rest.issues.createComment({ | |
owner, | |
repo, | |
issue_number, | |
body: commentBody | |
}); | |
github.rest.issues.addLabels({ | |
owner, | |
repo, | |
issue_number, | |
labels: ['ready to review','waiting-review','AI review first','auto merge'] | |
}); |