diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 4c07205..34faec1 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -7,7 +7,7 @@ on: pull_request: branches: [main] schedule: - - cron: "27 2 * * 4" + - cron: "30 2 * * 6" jobs: analyze: diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml deleted file mode 100755 index b0ef849..0000000 --- a/.github/workflows/lock.yml +++ /dev/null @@ -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: "" diff --git a/docker/zero-ui/Dockerfile b/docker/zero-ui/Dockerfile index 5150e30..24721fc 100644 --- a/docker/zero-ui/Dockerfile +++ b/docker/zero-ui/Dockerfile @@ -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