fix: restore rigorous end.md + fill real Gitea/Vikunja tokens

This commit is contained in:
2026-03-08 08:16:03 +09:00
parent 19795bd7ac
commit 6d7b120fab
6 changed files with 56 additions and 46 deletions

View File

@@ -12,15 +12,15 @@ description: Gitea API로 저장소 커밋/이슈/PR 현황을 조회하는 워
1. 최근 커밋 조회 (최신 10개):
```powershell
$h = @{Authorization="token {{GITEA_TOKEN}}"}
$commits = Invoke-RestMethod -Uri "{{GITEA_BASE_URL}}/api/v1/repos/{{GITEA_OWNER}}/{{GITEA_REPO}}/commits?limit=10&sha=main" -Headers $h
$h = @{Authorization="token 3a01b4b15a39921572e64c413353e870d4d2161b"}
$commits = Invoke-RestMethod -Uri "https://git.variet.net/api/v1/repos/Variet/{{GITEA_REPO}}/commits?limit=10&sha=main" -Headers $h
$commits | ForEach-Object { Write-Host "$($_.sha.Substring(0,7)) $($_.commit.message.Split("`n")[0])" }
```
2. 열린 이슈 조회:
```powershell
$h = @{Authorization="token {{GITEA_TOKEN}}"}
$issues = Invoke-RestMethod -Uri "{{GITEA_BASE_URL}}/api/v1/repos/{{GITEA_OWNER}}/{{GITEA_REPO}}/issues?state=open&type=issues" -Headers $h
$h = @{Authorization="token 3a01b4b15a39921572e64c413353e870d4d2161b"}
$issues = Invoke-RestMethod -Uri "https://git.variet.net/api/v1/repos/Variet/{{GITEA_REPO}}/issues?state=open&type=issues" -Headers $h
$issues | ForEach-Object { Write-Host "#$($_.number) $($_.title)" }
```