Skip to content

Commit cb877e7

Browse files
committed
fix: prevent issue label workflow from triggering on pull request events
1 parent ce4b552 commit cb877e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/milestone-manager.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
jobs:
1414
assign-to-milestone:
1515
if: >
16-
(github.event_name == 'issues' && github.event.label.name == 'GSSoC 2026') ||
16+
(github.event_name == 'issues' && github.event.label.name == 'GSSoC 2026' && github.event.issue.pull_request == null) ||
1717
(github.event_name == 'pull_request_target' && github.event.label.name == 'gssoc:approved')
1818
runs-on: ubuntu-latest
1919
steps:

0 commit comments

Comments
 (0)