Skip to content

Commit 0d885a5

Browse files
refactor: Update condition for run-feature job to improve clarity and functionality
1 parent 6357645 commit 0d885a5

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)