Skip to content

Commit 169838b

Browse files
committed
Fall back to inherited env when allowed_non_write_users is unset
🏠 Remote-Dev: homespace
1 parent 00d955c commit 169838b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ runs:
213213
OVERRIDE_GITHUB_TOKEN: ${{ inputs.github_token }}
214214
ALLOWED_BOTS: ${{ inputs.allowed_bots }}
215215
ALLOWED_NON_WRITE_USERS: ${{ inputs.allowed_non_write_users }}
216-
CLAUDE_CODE_SUBPROCESS_ENV_SCRUB: ${{ inputs.allowed_non_write_users != '' && '1' || '' }}
216+
CLAUDE_CODE_SUBPROCESS_ENV_SCRUB: ${{ inputs.allowed_non_write_users != '' && '1' || env.CLAUDE_CODE_SUBPROCESS_ENV_SCRUB || '' }}
217217
INCLUDE_COMMENTS_BY_ACTOR: ${{ inputs.include_comments_by_actor }}
218218
EXCLUDE_COMMENTS_BY_ACTOR: ${{ inputs.exclude_comments_by_actor }}
219219
GITHUB_RUN_ID: ${{ github.run_id }}

0 commit comments

Comments
 (0)