Skip to content

Commit c445637

Browse files
authored
Merge pull request #5095 from drizzle-team/main-workflows
fix: Fix condition for run-feature job
2 parents 45a1ffb + e7b3aaa commit c445637

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/router.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
run-feature:
12-
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
12+
if: github.event_name != 'workflow_dispatch' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
1313
uses: ./.github/workflows/release-feature-branch.yaml
1414
secrets: inherit
1515

0 commit comments

Comments
 (0)