Skip to content

Commit e0ee7b4

Browse files
authored
chore(e2e): Modify e2e skill to also account for untracked files (#18959)
Closes #18960 (added automatically)
1 parent ac5e91e commit e0ee7b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.claude/skills/e2e/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Extract the test app name from user input:
3131
If the user recently edited files in `packages/*`, identify which packages were modified:
3232

3333
```bash
34-
# Check which packages have uncommitted changes
35-
git status --porcelain | grep "^[ MARC][ MD] packages/" | cut -d'/' -f2 | sort -u
34+
# Check which packages have uncommitted changes (including untracked files)
35+
git status --porcelain | grep "^[ MARC?][ MD?] packages/" | cut -d'/' -f2 | sort -u
3636
```
3737

3838
For each modified package, rebuild its tarball:

0 commit comments

Comments
 (0)