This commit is contained in:
parent
d82577588b
commit
a9fbe4cdb4
@ -24,5 +24,7 @@ jobs:
|
|||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
|
context: .
|
||||||
|
file: docker/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: micr.cloud.mioffice.cn/egg/gitlab_monitor:${{ github.sha }}
|
tags: micr.cloud.mioffice.cn/egg/gitlab_monitor:${{ github.sha }}
|
||||||
|
13
Dockerfile
13
Dockerfile
@ -1,13 +0,0 @@
|
|||||||
FROM micr.cloud.mioffice.cn/zhaoyingbo/bun:alpine-cn
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
COPY package*.json ./
|
|
||||||
|
|
||||||
COPY bun.lockb ./
|
|
||||||
|
|
||||||
RUN bun install
|
|
||||||
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
CMD ["bun", "start"]
|
|
@ -1,9 +0,0 @@
|
|||||||
version: "3"
|
|
||||||
|
|
||||||
services:
|
|
||||||
gitlab_monitor:
|
|
||||||
image: git.yingbo.im:333/zhaoyingbo/gitlab_monitor:sha
|
|
||||||
container_name: gitlab_monitor
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- 3001:3000
|
|
15
docker/Dockerfile
Normal file
15
docker/Dockerfile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
FROM oven/bun:1-alpine
|
||||||
|
|
||||||
|
RUN /bin/sh -c apk update && apk add tzdata && cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY package*.json ./
|
||||||
|
|
||||||
|
COPY bun.lockb ./
|
||||||
|
|
||||||
|
RUN bun install
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
CMD ["bun", "start"]
|
20
service/gitlab/mr.ts
Normal file
20
service/gitlab/mr.ts
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import netTool from "../netTool"
|
||||||
|
import { GITLAB_AUTH_HEADER, GITLAB_BASE_URL, gitlabReqWarp } from "./tools"
|
||||||
|
|
||||||
|
const getDiffs = async (project_id: number, merge_request_iid: number) => {
|
||||||
|
const URL = `${GITLAB_BASE_URL}/projects/${project_id}/merge_requests/${merge_request_iid}/changes`
|
||||||
|
const res = await gitlabReqWarp(
|
||||||
|
() => netTool.get(URL, {}, GITLAB_AUTH_HEADER),
|
||||||
|
null
|
||||||
|
)
|
||||||
|
if (res === null) return null
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
|
||||||
|
const mr = {
|
||||||
|
getDiffs,
|
||||||
|
}
|
||||||
|
|
||||||
|
export default mr
|
||||||
|
|
||||||
|
getDiffs(139032, 484).then(console.log)
|
Loading…
x
Reference in New Issue
Block a user