diff --git a/.github/workflows/commit-preview.yaml b/.github/workflows/commit-preview.yaml index cb969e04f..fe99f6108 100644 --- a/.github/workflows/commit-preview.yaml +++ b/.github/workflows/commit-preview.yaml @@ -11,7 +11,10 @@ jobs: name: Generate commit preview steps: - name: Checkout - uses: actions/checkout@v3 + uses: akarys42/checkout-with-filter@main + with: + filter: 'blob:none' + fetch-depth: 0 - name: Enable Corepack shims run: corepack enable diff --git a/.github/workflows/manual-publish.yaml b/.github/workflows/manual-publish.yaml index 65631e36f..d2feeb1f5 100644 --- a/.github/workflows/manual-publish.yaml +++ b/.github/workflows/manual-publish.yaml @@ -11,7 +11,10 @@ jobs: name: Publish website steps: - name: Checkout - uses: actions/checkout@v3 + uses: akarys42/checkout-with-filter@main + with: + filter: 'blob:none' + fetch-depth: 0 - name: Enable Corepack shims run: corepack enable diff --git a/.github/workflows/pr-preview.yaml b/.github/workflows/pr-preview.yaml index db6d7d0a8..283be6045 100644 --- a/.github/workflows/pr-preview.yaml +++ b/.github/workflows/pr-preview.yaml @@ -10,7 +10,10 @@ jobs: name: Generate PR preview steps: - name: Checkout - uses: actions/checkout@v3 + uses: akarys42/checkout-with-filter@main + with: + filter: 'blob:none' + fetch-depth: 0 - name: Enable Corepack shims run: corepack enable