Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 00458d4eb2 | |||
| 894ece033b | |||
| fe2a513fbb | |||
| 2193bdd4d6 | |||
| af51ffacee | |||
| d9c55ca347 | |||
| 21fb9c1d94 | |||
| 607c9b82ea | |||
| 8acea007e7 |
+5
-4
@@ -1,8 +1,9 @@
|
|||||||
FROM node:20-slim
|
FROM alpine
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apk add --no-cache nodejs npm git \
|
||||||
git \
|
&& node --version \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& npm --version \
|
||||||
|
&& git --version
|
||||||
|
|
||||||
WORKDIR /action
|
WORKDIR /action
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
每個階段都會加上明確的 log,並確保即使部分功能未完成也能降級執行、不會中斷 pipeline。
|
每個階段都會加上明確的 log,並確保即使部分功能未完成也能降級執行、不會中斷 pipeline。
|
||||||
|
|
||||||
每次執行後請貼 log,我會協助 debug。
|
每次執行後請貼 log,我會協助 debug。
|
||||||
|
|
||||||
|
|||||||
+31
-18
@@ -1,25 +1,38 @@
|
|||||||
import fs from 'fs';
|
import { spawnSync } from 'child_process';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import { commitFile } from './gitea.js';
|
import { GITEA_SERVER_URL, GITEA_REPOSITORY, GITEA_TOKEN, PR_HEAD_BRANCH, FINDINGS_PATH } from './config.js';
|
||||||
import { FINDINGS_PATH } from './config.js';
|
|
||||||
|
function git(args, cwd) {
|
||||||
|
const result = spawnSync('git', args, { cwd, encoding: 'utf8' });
|
||||||
|
if (result.error) throw result.error;
|
||||||
|
if (result.status !== 0) throw new Error((result.stderr || result.stdout || '').trim());
|
||||||
|
return (result.stdout || '').trim();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 透過 Gitea API 將 findings.json push 到來源分支(不需要 git binary)
|
|
||||||
*/
|
|
||||||
export async function commitAndPush(workspace) {
|
export async function commitAndPush(workspace) {
|
||||||
|
const repoDir = path.join(workspace, GITEA_REPOSITORY);
|
||||||
|
const remoteUrl = GITEA_SERVER_URL.replace(/\/$/, '')
|
||||||
|
.replace('https://', `https://${GITEA_TOKEN}@`)
|
||||||
|
.replace('http://', `http://${GITEA_TOKEN}@`) + `/${GITEA_REPOSITORY}.git`;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const fullPath = path.join(workspace, FINDINGS_PATH);
|
git(['config', 'user.email', 'ai-review[bot]@gitea'], repoDir);
|
||||||
const content = fs.readFileSync(fullPath, 'utf8');
|
git(['config', 'user.name', 'AI Review Bot'], repoDir);
|
||||||
console.log(` [debug] FINDINGS_PATH=${FINDINGS_PATH} branch=${process.env.PR_HEAD_BRANCH} token=${process.env.GITEA_TOKEN ? '***' : 'EMPTY'}`);
|
git(['fetch', 'origin', PR_HEAD_BRANCH], repoDir);
|
||||||
const result = await commitFile(
|
git(['checkout', PR_HEAD_BRANCH], repoDir);
|
||||||
FINDINGS_PATH,
|
git(['add', FINDINGS_PATH], repoDir);
|
||||||
content,
|
|
||||||
'chore: update ai-review findings [skip ci]'
|
const status = git(['status', '--porcelain'], repoDir);
|
||||||
);
|
if (!status) {
|
||||||
const commitHash = result.commit?.sha?.slice(0, 7) || 'unknown';
|
console.log(' findings.json 無變更,跳過 commit');
|
||||||
console.log(` ✅ persisted findings commit=${commitHash} push=${process.env.PR_HEAD_BRANCH}`);
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const out = git(['commit', '-m', 'chore: update ai-review findings [skip ci]'], repoDir);
|
||||||
|
const commitHash = out.match(/\[.+ ([a-f0-9]+)\]/)?.[1] || 'unknown';
|
||||||
|
git(['push', remoteUrl, PR_HEAD_BRANCH], repoDir);
|
||||||
|
console.log(` ✅ persisted findings commit=${commitHash} push=${PR_HEAD_BRANCH}`);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
const detail = e.response?.data ? JSON.stringify(e.response.data) : e.message;
|
console.log(` ⚠️ Runner failed: commit/push 失敗: ${e.message}`);
|
||||||
console.log(` ⚠️ Runner failed: commit/push 失敗: ${e.response?.status || ''} ${detail}`);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-38
@@ -1,6 +1,6 @@
|
|||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import https from 'https';
|
import https from 'https';
|
||||||
import { GITEA_TOKEN, GITEA_SERVER_URL, GITEA_REPOSITORY, PR_NUMBER, PR_HEAD_BRANCH } from './config.js';
|
import { GITEA_TOKEN, GITEA_SERVER_URL, GITEA_REPOSITORY, PR_NUMBER } from './config.js';
|
||||||
|
|
||||||
const httpsAgent = new https.Agent({ rejectUnauthorized: false });
|
const httpsAgent = new https.Agent({ rejectUnauthorized: false });
|
||||||
const headers = () => ({ Authorization: `token ${GITEA_TOKEN}`, 'Content-Type': 'application/json' });
|
const headers = () => ({ Authorization: `token ${GITEA_TOKEN}`, 'Content-Type': 'application/json' });
|
||||||
@@ -15,40 +15,3 @@ export async function postComment(body) {
|
|||||||
const resp = await axios.post(api(`/repos/${GITEA_REPOSITORY}/issues/${PR_NUMBER}/comments`), { body }, { headers: headers(), timeout: 30000, httpsAgent });
|
const resp = await axios.post(api(`/repos/${GITEA_REPOSITORY}/issues/${PR_NUMBER}/comments`), { body }, { headers: headers(), timeout: 30000, httpsAgent });
|
||||||
return resp.data;
|
return resp.data;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 透過 Gitea API 建立或更新檔案(不需要 git binary)
|
|
||||||
*/
|
|
||||||
export async function commitFile(filePath, content, message) {
|
|
||||||
const encoded = Buffer.from(content).toString('base64');
|
|
||||||
const url = api(`/repos/${GITEA_REPOSITORY}/contents/${filePath}`);
|
|
||||||
|
|
||||||
// 先嘗試取得現有檔案的 SHA
|
|
||||||
let sha;
|
|
||||||
try {
|
|
||||||
const existing = await axios.get(`${url}?ref=${PR_HEAD_BRANCH}`, { headers: headers(), httpsAgent, timeout: 15000 });
|
|
||||||
sha = existing.data.sha;
|
|
||||||
console.log(` [debug] 取得現有檔案 SHA=${sha}`);
|
|
||||||
} catch (e) {
|
|
||||||
console.log(` [debug] 檔案不存在,將建立新檔案: ${e.response?.status || e.message}`);
|
|
||||||
sha = undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
const payload = {
|
|
||||||
message,
|
|
||||||
content: encoded,
|
|
||||||
branch: PR_HEAD_BRANCH,
|
|
||||||
...(sha ? { sha } : {}),
|
|
||||||
};
|
|
||||||
|
|
||||||
console.log(` [debug] ${sha ? 'PUT' : 'POST'} ${url} branch=${PR_HEAD_BRANCH}`);
|
|
||||||
const resp = await axios.request({
|
|
||||||
method: sha ? 'put' : 'post',
|
|
||||||
url,
|
|
||||||
headers: headers(),
|
|
||||||
httpsAgent,
|
|
||||||
timeout: 30000,
|
|
||||||
data: payload,
|
|
||||||
});
|
|
||||||
return resp.data;
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user