chore(deps): bump sass-loader from 16.0.7 to 16.0.8 #2602
This file contains hidden or 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: PR Title Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - v3.0.0 | |
| - v2.0.0 | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - edited | |
| permissions: {} | |
| concurrency: | |
| group: pr-title-${{ github.event.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| if: ${{ github.repository == 'PaloAltoNetworks/docusaurus-openapi-docs' }} | |
| name: Check | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: "22" | |
| - name: Install dependencies | |
| run: yarn --frozen-lockfile --prefer-offline --ignore-scripts | |
| - name: Check | |
| run: npx ts-node --transpile-only scripts/check-pr-title.ts "$PR_TITLE" | |
| env: | |
| PR_TITLE: ${{ github.event.pull_request.title }} |