Skip to content

Bump syn from 2.0.77 to 2.0.79 #421

Bump syn from 2.0.77 to 2.0.79

Bump syn from 2.0.77 to 2.0.79 #421

Workflow file for this run

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']
});