Commit a0f2e7f
authored
🧪 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 run1 parent 2b2a8f8 commit a0f2e7f
1 file changed
Lines changed: 5 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
9 | 14 | | |
10 | 15 | | |
11 | 16 | | |
| |||
0 commit comments