Skip to content

Commit 14fc5fa

Browse files
authored
docs: remove additional 'use: ./' syntax duplicated explanations (#1540)
1 parent b986d12 commit 14fc5fa

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

.github/workflows/example-docker.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v4
24-
# replace with the following for regular use:
25-
# uses: cypress-io/github-action@v6
2624
- name: Cypress tests
2725
uses: ./ # if copying, replace with cypress-io/github-action@v6
2826
with:

.github/workflows/example-recording.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ jobs:
5353
uses: actions/checkout@v4
5454

5555
- name: Cypress tests
56-
# normally you would write
57-
# uses: cypress-io/github-action@v6
5856
uses: ./
5957
# let's give this action an ID so we can refer
6058
# to its output values later
@@ -84,8 +82,6 @@ jobs:
8482
uses: actions/checkout@v4
8583

8684
- name: Cypress tests
87-
# normally you would write
88-
# uses: cypress-io/github-action@v6
8985
uses: ./
9086
with:
9187
working-directory: examples/recording

.github/workflows/example-start-and-pnpm-workspaces.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,7 @@ jobs:
3737
# the root of the pnpm workspace examples/start-and-pnpm-workspaces
3838
# to be installed
3939
# AND it automatically caches the Cypress binary.
40-
#
41-
# If you copy this workflow to another repository replace the following with
42-
# uses: cypress-io/github-action@v6
43-
# The notation ./ is a special usage only used here.
44-
# It causes the version of the action code from whatever branch it is launched in to be used.
45-
# Do not try to use the ./ notation this outside of this repository!
46-
uses: ./ # approximately equivalent to using cypress-io/github-action@v6
40+
uses: ./
4741
with:
4842
working-directory: examples/start-and-pnpm-workspaces
4943
runTests: false

0 commit comments

Comments
 (0)