Skip to content

Commit 26490f5

Browse files
authored
fix: GitHub app token permission 문제 해결 (#566)
* fix: Github App이 발행한 임시 토큰에 대해 읽기 권한 명시 * fix: Github App이 발행한 임시 토큰에 대해 읽기 권한 명시 문법 오류 수정 * fix: Github App이 발행한 임시 토큰에 대해 읽기 권한 명시 문법 오류 수정 * fix: Github App이 발행한 임시 토큰에 대해 Contents 읽기 권한 추가
1 parent 0f00f52 commit 26490f5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/dev-cd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ jobs:
7373
with:
7474
app-id: ${{ secrets.GH_APP_ID }}
7575
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
76-
permissions: "packages:read"
76+
permission-packages: "read"
77+
permission-contents: "read"
7778

7879
# --- 5. 설정 파일들만 scp로 전송 ---
7980
- name: Copy config files to remote

.github/workflows/prod-cd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ jobs:
7171
with:
7272
app-id: ${{ secrets.GH_APP_ID }}
7373
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
74-
permissions: "packages:read"
74+
permission-packages: "read"
75+
permission-contents: "read"
7576

7677
# --- 5. 설정 파일들만 scp로 전송 ---
7778
- name: Copy config files to remote

0 commit comments

Comments
 (0)