Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI

on:
push:
branches: [main]
branches: [main, 'release-please--**']
pull_request:
workflow_call:

Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/pr-title.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: PR Title

on:
push:
branches: ['release-please--**']
pull_request:
types: [opened, edited, synchronize, reopened]

Expand All @@ -9,7 +11,8 @@ jobs:
name: Validate conventional commit format
runs-on: ubuntu-24.04
steps:
- uses: amannn/action-semantic-pull-request@v6
- if: ${{ github.event_name != 'push' }}
uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -25,3 +28,6 @@ jobs:
requireScope: false
subjectPattern: ^.+$
subjectPatternError: "PR title must have a description after the type"

- if: ${{ github.event_name == 'push' }}
run: echo "Release Please PRs always use valid conventional commit format"