Skip to content

Commit 4ce62bd

Browse files
authored
chore(repo): add sandbox exclusions for writes and reads (#34699)
## Current Behavior The sandboxing config only excludes reads for `node_modules`, `.nx`, `.git`, and `package.json` paths. No write exclusions are configured, and `pnpm-workspace.yaml` is not excluded from reads. ## Expected Behavior - The `nx/**/*` directory is excluded from write sandboxing, allowing write operations to the nx directory during CI workflows. - `pnpm-workspace.yaml` is excluded from read sandboxing, similar to other workspace config files. ## Related Issue(s) N/A
1 parent dd1c729 commit 4ce62bd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.nx/workflows/sandboxing-config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ exclude-reads:
33
- .nx/**/*
44
- .git/**/*
55
- '**/package.json'
6+
- pnpm-workspace.yaml
7+
exclude-writes:
8+
- nx/**/*

0 commit comments

Comments
 (0)