Skip to content

Commit

Permalink
Merge branch 'dev' into chore/max-textures-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Zyie committed May 17, 2024
2 parents 1297d17 + 64c0cf5 commit 9951760
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pull-name.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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@v3
- name: Check PR Title
uses: clowdhaus/actions/pr-title@v0.1.0
with:
on-fail-message: "Your PR title doesn't match the required format. The title should be in this format: \n\n```\nchore: update Text docs\nfix: text not rendering\nfeat: add new feature to Text\nbreaking: remove Text#resolution \n```"
title-regex: '^(chore|feat|fix|breaking)?(!)?\:\s.*$'
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9951760

Please sign in to comment.