chore(deps): update homebrew/actions digest to 1fc9a32 #2903
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
# Copyright 2024 Defense Unicorns | |
# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial | |
name: PR Title Check | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, edited, synchronize] | |
permissions: | |
contents: read | |
jobs: | |
title_check: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
- name: Install commitlint | |
run: npm install --save-dev @commitlint/{config-conventional,cli} | |
- name: Lint PR title | |
env: | |
PR_TITLE: ${{ github.event.pull_request.title }} | |
run: | | |
echo "$PR_TITLE" | npx commitlint |