Skip to content

feat(workflows): Ensure that PR titles conform to the conventional commits spec #5

feat(workflows): Ensure that PR titles conform to the conventional commits spec

feat(workflows): Ensure that PR titles conform to the conventional commits spec #5

Workflow file for this run

name: Pull Request
on:
pull_request:
types:
- opened
- edited
- synchronize
workflow_call:
permissions:
pull-requests: read
jobs:
title:
runs-on: ubuntu-latest
steps:
- name: Check that title follows Conventional Commits spec
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}