Skip to content
This repository was archived by the owner on Jul 7, 2026. It is now read-only.

chore(deps): bump actions/checkout from 5.0.0 to 6.0.1 #781

chore(deps): bump actions/checkout from 5.0.0 to 6.0.1

chore(deps): bump actions/checkout from 5.0.0 to 6.0.1 #781

Workflow file for this run

name: check-pr-title
on:
pull_request:
types: [opened, edited, synchronize]
permissions:
contents: read
jobs:
check-pr-title:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.1
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7.1.0
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Check PR title format
run: uv run --no-project .github/bin/check-pr-title-format
env:
PR_TITLE: ${{ github.event.pull_request.title }}