ci: small changes

This commit is contained in:
dec0dOS 2023-10-04 21:40:02 +01:00
parent f6a90c3483
commit 306112de5d
3 changed files with 2 additions and 23 deletions

View file

@ -7,7 +7,7 @@ on:
pull_request:
branches: [main]
schedule:
- cron: "27 2 * * 4"
- cron: "30 2 * * 6"
jobs:
analyze:

View file

@ -1,20 +0,0 @@
---
name: Lock
on:
schedule:
- cron: "0 9 * * *"
workflow_dispatch:
jobs:
lock:
name: 🔒 Lock closed issues and PRs
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v2.0.3
with:
github-token: ${{ github.token }}
issue-lock-inactive-days: "30"
issue-lock-reason: ""
pr-lock-inactive-days: "1"
pr-lock-reason: ""

View file

@ -2,14 +2,13 @@ FROM --platform=$BUILDPLATFORM node:lts-alpine as frontend-build
ENV GENERATE_SOURCEMAP=false
WORKDIR /app/frontend
WORKDIR /app/
COPY --link package.json yarn.lock* .yarnrc.yml ./
COPY --link .yarn/ ./.yarn
WORKDIR /app/frontend
COPY --link ./frontend/package.json /app/frontend
RUN yarn workspaces focus frontend
COPY --link ./frontend /app/frontend
WORKDIR /app/frontend
RUN yarn build