Skip to content

[FEATURE]: Nightly clean review apps and images #4

[FEATURE]: Nightly clean review apps and images

[FEATURE]: Nightly clean review apps and images #4

name: Add helper Comment on PR creation
on:
pull_request:
types: [opened]
jobs:
comment-on-pr:
runs-on: ubuntu-latest
steps:
- name: Add GitHub Comment for review app instructions
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "Hi 👋 To deploy a review app, please comment `/deploy-review-app`"
})