Skip to content

Commit 11615c4

Browse files
committed
fix(ci): disable .NET workflow until project is initialized
The .NET CI workflow is temporarily set to manual trigger only to prevent failures on PRs before the .NET project exists. Will be re-enabled automatically when Issue #25 (Initialize .NET 10 solution) is completed.
1 parent 37b46b2 commit 11615c4

1 file changed

Lines changed: 14 additions & 10 deletions

File tree

.github/workflows/net-ci.yml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
name: .NET CI
22

3+
# Temporarily disabled until .NET project is initialized (Issue #25)
4+
# Will be enabled automatically once net/ directory contains .NET project files
35
on:
4-
push:
5-
branches: [ main ]
6-
paths:
7-
- 'net/**'
8-
- '.github/workflows/net-ci.yml'
9-
pull_request:
10-
branches: [ main ]
11-
paths:
12-
- 'net/**'
13-
- '.github/workflows/net-ci.yml'
6+
workflow_dispatch: # Manual trigger only for now
7+
# Uncomment when .NET project is ready:
8+
# push:
9+
# branches: [ main ]
10+
# paths:
11+
# - 'net/**'
12+
# - '.github/workflows/net-ci.yml'
13+
# pull_request:
14+
# branches: [ main ]
15+
# paths:
16+
# - 'net/**'
17+
# - '.github/workflows/net-ci.yml'
1418

1519
defaults:
1620
run:

0 commit comments

Comments
 (0)