build(deps): bump bazel-contrib/setup-bazel from 8cb04a772ab4c1eb984e9c1b493a182e96c5e425 to c5acdfb288317d0b5c0bbd7a396a3dc868bb0f86 in the github-actions group across 1 directory #857
Workflow file for this run
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: Validate PR title | |
| on: | |
| pull_request: | |
| types: [labeled, unlabeled, opened, edited] | |
| jobs: | |
| validate-tags-match-title: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version-file: ".nvmrc" | |
| - name: Check if labels match PR title | |
| env: | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| PR_LABELS: ${{ join(github.event.pull_request.labels.*.name, ',') }} | |
| run: node .github/scripts/validate-pr-title.ts |