Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cypress-io/github-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dea7d762c8523329899152c199589a157b2376a7
Choose a base ref
..
head repository: cypress-io/github-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 475f2d5fa7a1161e4e56ec63bf4f58459e376975
Choose a head ref
Showing with 2 additions and 6 deletions.
  1. +1 −3 .github/workflows/example-recording.yml
  2. +1 −3 README.md
4 changes: 1 addition & 3 deletions .github/workflows/example-recording.yml
Original file line number Diff line number Diff line change
@@ -55,9 +55,6 @@ jobs:
# let's give this action an ID so we can refer
# to its output values later
id: cypress
# Continue the build in case of an error, as we need to set the
# commit status in the next step, both in case of success and failure
continue-on-error: true
with:
working-directory: examples/recording
record: true
@@ -69,6 +66,7 @@ jobs:
# https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#steps-context
# "output" can be success, failure, cancelled, or skipped
- name: Print Cypress Cloud URL
if: always()
run: |
echo Cypress finished with: ${{ steps.cypress.outcome }}
echo See results at ${{ steps.cypress.outputs.resultsUrl }}
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1370,14 +1370,12 @@ This is an example of using the step output `resultsUrl`:
# let's give this action an ID so we can refer
# to its output values later
id: cypress
# Continue the build in case of an error, as we need to set the
# commit status in the next step, both in case of success or failure
continue-on-error: true
with:
record: true
env:
CYPRESS_RECORD_KEY: ${{ secrets.RECORDING_KEY }}
- name: Print Cypress Cloud URL
if: always()
run: |
echo Cypress finished with: ${{ steps.cypress.outcome }}
echo See results at ${{ steps.cypress.outputs.resultsUrl }}