From 11e8bf307a0b88c532a1797820a66d4a450051d7 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Thu, 11 Sep 2025 11:54:52 +0200 Subject: [PATCH] docs: remove additional 'use: ./' syntax duplicated explanations --- .github/workflows/example-docker.yml | 2 -- .github/workflows/example-recording.yml | 4 ---- .github/workflows/example-start-and-pnpm-workspaces.yml | 8 +------- 3 files changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/example-docker.yml b/.github/workflows/example-docker.yml index dbf2bf34a..04c31bd4a 100644 --- a/.github/workflows/example-docker.yml +++ b/.github/workflows/example-docker.yml @@ -21,8 +21,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - # replace with the following for regular use: - # uses: cypress-io/github-action@v6 - name: Cypress tests uses: ./ # if copying, replace with cypress-io/github-action@v6 with: diff --git a/.github/workflows/example-recording.yml b/.github/workflows/example-recording.yml index 09911b4aa..11b208026 100644 --- a/.github/workflows/example-recording.yml +++ b/.github/workflows/example-recording.yml @@ -53,8 +53,6 @@ jobs: uses: actions/checkout@v4 - name: Cypress tests - # normally you would write - # uses: cypress-io/github-action@v6 uses: ./ # let's give this action an ID so we can refer # to its output values later @@ -84,8 +82,6 @@ jobs: uses: actions/checkout@v4 - name: Cypress tests - # normally you would write - # uses: cypress-io/github-action@v6 uses: ./ with: working-directory: examples/recording diff --git a/.github/workflows/example-start-and-pnpm-workspaces.yml b/.github/workflows/example-start-and-pnpm-workspaces.yml index 78fc779cc..fab9ff52f 100644 --- a/.github/workflows/example-start-and-pnpm-workspaces.yml +++ b/.github/workflows/example-start-and-pnpm-workspaces.yml @@ -37,13 +37,7 @@ jobs: # the root of the pnpm workspace examples/start-and-pnpm-workspaces # to be installed # AND it automatically caches the Cypress binary. - # - # If you copy this workflow to another repository replace the following with - # uses: cypress-io/github-action@v6 - # The notation ./ is a special usage only used here. - # It causes the version of the action code from whatever branch it is launched in to be used. - # Do not try to use the ./ notation this outside of this repository! - uses: ./ # approximately equivalent to using cypress-io/github-action@v6 + uses: ./ with: working-directory: examples/start-and-pnpm-workspaces runTests: false