Skip to content

Commit 81f8dee

Browse files
committed
Fix name
1 parent 39ec357 commit 81f8dee

File tree

4 files changed

+4
-16
lines changed

4 files changed

+4
-16
lines changed

.github/actions/checkout/action.yml renamed to .github/actions/submodules-checkout/action.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ description: |
44
Sets up the CI environment for the project.
55
66
inputs:
7-
ref:
8-
description: "The ref to checkout"
9-
required: false
10-
default: ${{ github.event.pull_request.head.sha || github.sha }}
117
submodules-ssh-key:
128
description: "The SSH key to private submodules to use for the checkout"
139
required: false

.github/workflows/fixtures-test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ jobs:
3333
- uses: actions/checkout@v4
3434
with:
3535
ref: ${{ github.event.pull_request.head.sha || github.sha }}
36-
- uses: ./.github/actions/checkout
36+
- uses: ./.github/actions/submodules-checkout
3737
with:
38-
ref: ${{ github.event.pull_request.head.sha || github.sha }}
3938
submodules-ssh-key: ${{ secrets.PRIVATE_GITHUB_DEPLOY_TOKEN }}
4039

4140
- uses: ./.github/actions/ci-setup

.github/workflows/main.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ jobs:
2929
with:
3030
ref: ${{ github.event.pull_request.head.sha || github.sha }}
3131

32-
- uses: ./.github/actions/checkout
33-
with:
34-
ref: ${{ github.event.pull_request.head.sha || github.sha }}
35-
3632
- uses: ./.github/actions/ci-setup
3733

3834
- uses: actions/cache@v4
@@ -53,9 +49,8 @@ jobs:
5349
- run: pnpm --filter=@webstudio-is/prisma-client build
5450
- run: pnpm -r typecheck
5551

56-
- uses: ./.github/actions/checkout
52+
- uses: ./.github/actions/submodules-checkout
5753
with:
58-
ref: ${{ github.event.pull_request.head.sha || github.sha }}
5954
submodules-ssh-key: ${{ secrets.PRIVATE_GITHUB_DEPLOY_TOKEN }}
6055

6156
- run: |
@@ -69,9 +64,8 @@ jobs:
6964
with:
7065
ref: ${{ github.event.pull_request.head.sha || github.sha }}
7166

72-
- uses: ./.github/actions/checkout
67+
- uses: ./.github/actions/submodules-checkout
7368
with:
74-
ref: ${{ github.event.pull_request.head.sha || github.sha }}
7569
submodules-ssh-key: ${{ secrets.PRIVATE_GITHUB_DEPLOY_TOKEN }}
7670

7771
- uses: ./.github/actions/ci-setup

.github/workflows/vercel-deploy-staging.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ jobs:
4040
with:
4141
ref: ${{ github.sha }}
4242

43-
- uses: ./.github/actions/checkout
43+
- uses: ./.github/actions/submodules-checkout
4444
with:
45-
ref: ${{ github.sha }}
4645
submodules-ssh-key: ${{ secrets.PRIVATE_GITHUB_DEPLOY_TOKEN }}
4746

4847
- uses: pnpm/action-setup@v4

0 commit comments

Comments
 (0)