Skip to content

Commit afc2396

Browse files
Fix mcp-diff workflow triggers
Add push triggers to run on: - Pushes to main branch (catches merges) - Tag pushes (v*) for release comparisons against previous tags The pull_request trigger alone doesn't run when commits are pushed to PR branches via merge or direct push. Adding push triggers ensures the diff runs in all expected scenarios.
1 parent e559a36 commit afc2396

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/mcp-diff.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: MCP Server Diff
22

33
on:
44
pull_request:
5+
push:
6+
branches: [main]
7+
tags: ['v*']
58

69
permissions:
710
contents: read

0 commit comments

Comments
 (0)