Skip to content

fix: converge MRRT cache to single RT on concurrent refresh #359

fix: converge MRRT cache to single RT on concurrent refresh

fix: converge MRRT cache to single RT on concurrent refresh #359

Workflow file for this run

name: Lint PR Title
on:
pull_request:
types:
- opened
- edited
- reopened
permissions:
contents: read
env:
NODE_VERSION: 24
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
lint-title:
name: Lint PR Title
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
cache-dependency-path: .github/actions/lint-pr-title/package-lock.json
- name: Install action dependencies
run: npm ci
working-directory: .github/actions/lint-pr-title
- name: Lint PR Title
uses: ./.github/actions/lint-pr-title