chore: bump github.com/spf13/viper from 1.18.2 to 1.19.0 #238
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: 'Conventional commit titles' | |
on: | |
pull_request: | |
types: | |
# Check title when opened. | |
- opened | |
# Check title when new commits are pushed. | |
# Required to use as a status check. | |
- synchronize | |
# When the title or description change | |
- edited | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: deepakputhraya/action-pr-title@master | |
with: | |
# Ensure pull request titles match the Conventional Commits specification https://www.conventionalcommits.org/en/v1.0.0/ | |
regex: '^(feat|fix|chore|ci|refactor|test)!?:' |