Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
validate:
name: Validate PR title
runs-on: ubuntu-latest
# Dependabot genera PR titles con la primera letra del subject capitalizada
# ("Bump foo from X to Y") que rompe el subjectPattern de abajo. Sus
# commits internamente sí siguen Conventional Commits (build(deps): bump...);
# el problema es sólo el title. Skipear el actor evita falsos negativos
# sin debilitar la regla para PRs humanas.
if: github.actor != 'dependabot[bot]'
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
Expand Down
Loading