Skip to content

Commit f38c9fc

Browse files
committed
fix: add push trigger to integration test workflow
GitHub was trying to run the workflow on push but it only had workflow_dispatch, causing validation failures.
1 parent 6d32dd6 commit f38c9fc

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/test-vscode-workflows-integration.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Test VS Code Workflows Integration
22

33
on:
44
workflow_dispatch:
5+
push:
6+
branches:
7+
- feat/add-vscode-extension-ci
8+
paths:
9+
- '.github/workflows/test-vscode-workflows-integration.yml'
10+
- 'packages/vscode-extension-ci/**'
511

612
jobs:
713
test-with-apex-language-support:

0 commit comments

Comments
 (0)