Skip to content

Bump path-to-regexp from 8.3.0 to 8.4.0 #3

Bump path-to-regexp from 8.3.0 to 8.4.0

Bump path-to-regexp from 8.3.0 to 8.4.0 #3

Workflow file for this run

name: Pull Request Opened
on:
pull_request:
types: [opened]
permissions:
issues: write
jobs:
respond:
runs-on: ubuntu-latest
steps:
- name: Comment on new PR
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: "### 🚀 Thanks for the pull request! I'll review your changes shortly."
})