chore(deps-dev): bump @octokit/plugin-rest-endpoint-methods from 11.0.0 to 11.0.1 #2348
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check PR Title | |
on: | |
pull_request: | |
branches: [ main ] | |
types: [ edited, opened, reopened, synchronize ] | |
jobs: | |
test: | |
name: PR Title Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
- name: Validate PR Title Contains Valid Descriptor | |
run: deno run -A scripts/verify-pr-title-has-valid-descriptor.ts | |
env: | |
TITLE: ${{ github.event.pull_request.title }} | |
- uses: ./ | |
with: | |
helper: check-pr-title | |
# pattern: 'my-regex-pattern' (optional: pattern must be wrapped in single quotes) |