Skip to content

[DO NOT REVIEW] TEST #1

[DO NOT REVIEW] TEST

[DO NOT REVIEW] TEST #1

Workflow file for this run

name: PR Comment
on:
pull_request:
types: [opened]
jobs:
add-comment:
runs-on: ubuntu-latest
steps:
- name: Add a comment to the PR
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.createComment({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "Thank you for your pull request! Our team will review it shortly."
})