Skip to content

breaking: rewrite assetpack #117

breaking: rewrite assetpack

breaking: rewrite assetpack #117

Workflow file for this run

name: Pull Request Title Format
on:
pull_request:
branches:
- '**'
types:
- opened
- reopened
- edited
- synchronize
jobs:
prTitle:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check PR Title
uses: clowdhaus/actions/[email protected]
with:
on-fail-message: "Your PR title doesn't match the required format. The title should be in this format: \n\n```\nchore: update docs\n```"
title-regex: '^(chore|feat|fix|breaking)?(!)?\:\s.*$'
github-token: ${{ secrets.GITHUB_TOKEN }}