diff --git a/.github/labeler.yml b/.github/labeler.yml index 59a666e..c03385d 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -4,3 +4,6 @@ translation: locales/** feature: - head-branch: ['^feature', 'feature'] + +fix: + - head-branch: ['^fix', 'fix'] diff --git a/.github/pull-request-template.md b/.github/pull-request-template.md index 8bf4114..27e378a 100644 --- a/.github/pull-request-template.md +++ b/.github/pull-request-template.md @@ -14,5 +14,5 @@ **Screenshots (if applicable):** -### **Additional notes:** +**Additional notes:** diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 010ac26..99ae133 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: build: name: Build the project runs-on: ubuntu-24.04 - timeout-minutes: 15 + timeout-minutes: 30 steps: - name: Check out Git repository uses: actions/checkout@v4 @@ -48,6 +48,6 @@ jobs: run: bun run build env: NEXT_PUBLIC_GTM_ID: ${{ secrets.NEXT_PUBLIC_GTM_ID }} - NEXT_PUBLIC_SANITY_PROJECT_ID: qqvmmpgb - NEXT_PUBLIC_SANITY_DATASET: test - NEXT_PUBLIC_BASE_URL: https://www.redotengine.org + NEXT_PUBLIC_SANITY_PROJECT_ID: ${{ vars.NEXT_PUBLIC_SANITY_PROJECT_ID }} + NEXT_PUBLIC_SANITY_DATASET: ${{ vars.NEXT_PUBLIC_SANITY_DATASET }} + NEXT_PUBLIC_BASE_URL: ${{ vars.NEXT_PUBLIC_BASE_URL }} diff --git a/README.md b/README.md index 8b61961..2007ac1 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,6 @@ This is the official website for the **Redot Engine**, providing information, re ## Build from source -### Install Node.js - -Make sure Node.js is installed on your machine. If it's not, you can download and install it from [nodejs.org](https://nodejs.org/). - ### Install Bun Bun is a fast JavaScript runtime like Node.js, but with a built-in package manager. If you haven't installed it yet, you can do so by running: