Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3.8k
improvement(ci): timeouts, docs-only PR skip, fork-isolated caches, Node pin; remove i18n workflow#5714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
improvement(ci): timeouts, docs-only PR skip, fork-isolated caches, Node pin; remove i18n workflow #5714
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -5,6 +5,11 @@ on: | ||
| branches: [main, staging, dev] | ||
| pull_request: | ||
| branches: [main, staging, dev] | ||
| # Docs content and markdown don't affect the app build or images; push | ||
| # runs stay unfiltered because they feed the deploy pipeline. | ||
| paths-ignore: | ||
| - 'apps/docs/content/**' | ||
| - '**/*.md' | ||
| concurrency: | ||
| group: ci-${{ github.ref }} | ||
| @@ -24,6 +29,7 @@ jobs: | ||
| detect-version: | ||
| name: Detect Version | ||
| runs-on: blacksmith-4vcpu-ubuntu-2404 | ||
| timeout-minutes: 5 | ||
| if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging' || github.ref == 'refs/heads/dev') | ||
| outputs: | ||
| version: ${{ steps.extract.outputs.version }} | ||
| @@ -76,6 +82,7 @@ jobs: | ||
| needs: [detect-version, migrate-dev] | ||
| if: github.event_name == 'push' && github.ref == 'refs/heads/dev' | ||
| runs-on: blacksmith-8vcpu-ubuntu-2404 | ||
| timeout-minutes: 30 | ||
| permissions: | ||
| contents: read | ||
| id-token: write | ||
| @@ -139,6 +146,7 @@ jobs: | ||
| needs: [migrate-dev] | ||
| if: github.event_name == 'push' && github.ref == 'refs/heads/dev' | ||
| runs-on: blacksmith-4vcpu-ubuntu-2404 | ||
| timeout-minutes: 15 | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | ||
| @@ -185,6 +193,7 @@ jobs: | ||
| github.event_name == 'push' && | ||
| (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging') | ||
| runs-on: blacksmith-8vcpu-ubuntu-2404 | ||
| timeout-minutes: 30 | ||
| permissions: | ||
| contents: read | ||
| packages: write | ||
| @@ -284,6 +293,7 @@ jobs: | ||
| github.event_name == 'push' && | ||
| (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging') | ||
| runs-on: blacksmith-2vcpu-ubuntu-2404 | ||
| timeout-minutes: 10 | ||
| permissions: | ||
| contents: read | ||
| id-token: write | ||
| @@ -351,6 +361,7 @@ jobs: | ||
| build-ghcr-arm64: | ||
| name: Build ARM64 (GHCR Only) | ||
| runs-on: blacksmith-8vcpu-ubuntu-2404-arm | ||
| timeout-minutes: 30 | ||
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
| permissions: | ||
| contents: read | ||
| @@ -399,6 +410,7 @@ jobs: | ||
| create-ghcr-manifests: | ||
| name: Create GHCR Manifests | ||
| runs-on: blacksmith-2vcpu-ubuntu-2404 | ||
| timeout-minutes: 10 | ||
waleedlatif1 marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| needs: [promote-images, build-ghcr-arm64, detect-version] | ||
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
| permissions: | ||
| @@ -462,6 +474,7 @@ jobs: | ||
| check-docs-changes: | ||
| name: Check Docs Changes | ||
| runs-on: blacksmith-4vcpu-ubuntu-2404 | ||
| timeout-minutes: 5 | ||
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
| outputs: | ||
| docs_changed: ${{ steps.filter.outputs.docs }} | ||
| @@ -490,6 +503,7 @@ jobs: | ||
| create-release: | ||
| name: Create GitHub Release | ||
| runs-on: blacksmith-4vcpu-ubuntu-2404 | ||
| timeout-minutes: 10 | ||
| needs: [create-ghcr-manifests, detect-version] | ||
| if: needs.detect-version.outputs.is_release == 'true' | ||
| permissions: | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -11,6 +11,7 @@ jobs: | ||
| process-docs-embeddings: | ||
| name: Process Documentation Embeddings | ||
| runs-on: blacksmith-8vcpu-ubuntu-2404 | ||
| timeout-minutes: 30 | ||
waleedlatif1 marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| if: github.ref == 'refs/heads/main' | ||
| steps: | ||
| @@ -25,7 +26,7 @@ jobs: | ||
| - name: Setup Node | ||
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | ||
| with: | ||
| node-version: latest | ||
| node-version: 22 | ||
| - name: Cache Bun dependencies | ||
| uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 | ||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.