🐛 [major] Get cached numbers as numbers #95
Workflow file for this run
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
name: ✏️ Enforce PR title | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened, ready_for_review] | |
branches: [main, master] # keep both for max. copy-pastability | |
jobs: | |
pr_naming_convention: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: deepakputhraya/action-pr-title@master | |
with: | |
regex: "^(?:🌪|💨|🧰|💡|🚑|🐛) .+$" # Regex the title should match. | |
prefix_case_sensitive: false # title prefix are case insensitive | |
min_length: 5 # Min length of the title | |
max_length: 100 # Max length of the title |