connection github enhancements

This commit is contained in:
Stijnus
2025-01-23 16:02:50 +01:00
parent 5a6c0e5f90
commit fd98059cfe
6 changed files with 422 additions and 26 deletions

View File

@@ -0,0 +1,26 @@
import { json } from '@remix-run/node';
import type { LoaderFunctionArgs } from '@remix-run/node';
import { execSync } from 'child_process';
export async function loader({ request }: LoaderFunctionArgs) {
try {
const branch = execSync('git rev-parse --abbrev-ref HEAD').toString().trim();
const commit = execSync('git rev-parse --short HEAD').toString().trim();
const lastCommitMessage = execSync('git log -1 --pretty=%B').toString().trim();
return json({
branch,
commit,
lastCommitMessage,
timestamp: new Date().toISOString(),
});
} catch (error) {
return json(
{
error: 'Failed to fetch git information',
details: error instanceof Error ? error.message : 'Unknown error',
},
{ status: 500 },
);
}
}