Skip to content

Commit a42dd28

Browse files
remove next-project placeholder and .projectsignore
1 parent 58b4d3d commit a42dd28

3 files changed

Lines changed: 2 additions & 12 deletions

File tree

.github/workflows/validate.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,10 @@ jobs:
4343
run: |
4444
python - <<'EOF'
4545
import sys, pathlib
46-
ignore_file = pathlib.Path(".projectsignore")
47-
ignored = set()
48-
if ignore_file.exists():
49-
for line in ignore_file.read_text().splitlines():
50-
line = line.strip()
51-
if line and not line.startswith("#"):
52-
ignored.add(line)
5346
errors = []
5447
checked = 0
5548
for project in pathlib.Path("projects").iterdir():
56-
if not project.is_dir() or project.name in ignored:
49+
if not project.is_dir():
5750
continue
5851
checked += 1
5952
mp = project / "machine-profile.yaml"
@@ -64,7 +57,7 @@ jobs:
6457
for e in errors:
6558
print(f" {e}")
6659
sys.exit(1)
67-
print(f"All {checked} project(s) have machine-profile.yaml (skipped: {ignored or 'none'})")
60+
print(f"All {checked} project(s) have machine-profile.yaml")
6861
EOF
6962
7063
- name: Verify no .anpkg files committed

.projectsignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

projects/next-project/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)