Skip to content

Commit a96aed5

Browse files
jgjgillclaude
andcommitted
fix(ci): Gemini CLI trusted folder 검증 우회 환경 변수 추가
- GitHub Actions 임시 디렉토리가 신뢰되지 않아 --yolo 모드가 default로 강등되며 exit 55 발생 - job 레벨에 GEMINI_CLI_TRUST_WORKSPACE=true 추가하여 daily-content / weekly-plan / test-gemini 워크플로우 정상 동작 복구 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 59a7372 commit a96aed5

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/daily-content.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ on:
2626
jobs:
2727
generate-content:
2828
runs-on: ubuntu-latest
29+
env:
30+
GEMINI_CLI_TRUST_WORKSPACE: 'true'
2931

3032
steps:
3133
- name: Checkout repository

.github/workflows/test-gemini.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
jobs:
77
test-gemini:
88
runs-on: ubuntu-latest
9+
env:
10+
GEMINI_CLI_TRUST_WORKSPACE: 'true'
911

1012
steps:
1113
- name: Setup Node.js

.github/workflows/weekly-plan.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
jobs:
99
plan-week:
1010
runs-on: ubuntu-latest
11+
env:
12+
GEMINI_CLI_TRUST_WORKSPACE: 'true'
1113

1214
steps:
1315
- name: Checkout repository

0 commit comments

Comments
 (0)