Skip to content

Bump braces from 3.0.2 to 3.0.3 #10

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #10

Workflow file for this run

name: PR Comment
on:
pull_request:
types: [opened]
jobs:
add-comment:
runs-on: ubuntu-latest
steps:
- name: Add PR Comment
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "## PR Code Suggestions ✨"
})