Skip to content

Conversation

Tyriar
Copy link
Member

@Tyriar Tyriar commented Jul 18, 2025

Fixes #253472

This change merges chat.agent.terminal.allowList and chat.agent.terminal.denyList into chat.agent.terminal.autoApprove. It works basically the same, just the deny list entries are now false.

Before:

"chat.agent.terminal.allowList": {
  "foo": true,
},
"chat.agent.terminal.denyList": {
  "bar": true,
  "rm": false,
},

After:

"chat.agent.terminal.autoApprove": {
  "foo": true,
  "bar": false,
  "rm": null, // unset via null
},

@Tyriar Tyriar added this to the July 2025 milestone Jul 18, 2025
@Tyriar Tyriar self-assigned this Jul 18, 2025
@Tyriar Tyriar marked this pull request as ready for review July 18, 2025 17:51
@Tyriar Tyriar requested a review from meganrogge July 18, 2025 17:51
@Tyriar Tyriar merged commit cc1d86c into main Jul 18, 2025
18 checks passed
@Tyriar Tyriar deleted the tyriar/autoapprove_merge branch July 18, 2025 18:20
@vs-code-engineering vs-code-engineering bot locked and limited conversation to collaborators Sep 1, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Merge allowList and denyList settings together now that they're objects
2 participants