Skip to content

Commit a0f2e7f

Browse files
🧪 Test: Prerelease label with insignificant change (#20)
## Summary This PR tests the prerelease label scenario with an **insignificant** file change. ## What changed - Added `.idea/` to `.gitignore` (not an important file) ## Expected behavior **Without prerelease label**: `HasImportantChanges` should be `false` and build/test stages should be skipped. **With prerelease label**: Even though no important files changed, the `shouldPrerelease` flag should cause `$shouldRunBuildTest` to be `true`, so build/test stages **should run**. ## Important files patterns (none match `.gitignore`) - `^\.github/workflows/Process-PSModule\.yml$` ❌ - `^src/` ❌ - `^examples/` ❌ - `^README\.md$` ❌ ## Verification 1. First run (without label): Build/test should be skipped 2. After adding `prerelease` label: Build/test should run
1 parent 2b2a8f8 commit a0f2e7f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
!.vscode/extensions.json
77
*.code-workspace
88

9+
# IDE files
10+
.idea/
11+
.vscode/
12+
*.log
13+
914
# Local History for Visual Studio Code
1015
.history/*
1116

0 commit comments

Comments
 (0)