Update matrix-org/github-action-benchmark (#8774)

* Update cypress.yaml

* Update cypress.yaml

* Update cypress.yaml
This commit is contained in:
Michael Telatynski 2022-06-07 10:56:39 +01:00 committed by GitHub
parent 9c44e6c1de
commit f65e8d088e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ jobs:
echo "COMMIT_INFO_AUTHOR=$(git log --format='%an' -n 1 ${{ github.event.workflow_run.head_sha }})" >> $GITHUB_ENV
echo "COMMIT_INFO_EMAIL=$(git log --format='%ae' -n 1 ${{ github.event.workflow_run.head_sha }})" >> $GITHUB_ENV
# Only run Percy when it is demanded or on develop
if [[ "${{ (contains(fromJSON(steps.prdetails.outputs.data).labels.*.name, 'X-Needs-Percy') || github.ref == 'refs/heads/develop') }}" == "false" ]]; then
if [[ "${{ (contains(fromJSON(steps.prdetails.outputs.data).labels.*.name, 'X-Needs-Percy') || github.event.workflow_run.event != 'pull_request') }}" == "false" ]]; then
echo "PERCY_ENABLE=0" >> $GITHUB_ENV
fi
@ -87,8 +87,8 @@ jobs:
cypress/synapselogs
- name: Store benchmark result
if: github.ref == 'refs/heads/develop'
uses: matrix-org/github-action-benchmark@jsperfentry-1
if: github.event.workflow_run.event != 'pull_request'
uses: matrix-org/github-action-benchmark@jsperfentry-5
with:
name: Cypress measurements
tool: 'jsperformanceentry'
@ -98,4 +98,4 @@ jobs:
fail-on-alert: false
comment-on-alert: false
github-token: ${{ secrets.DEPLOY_GH_PAGES }}
auto-push: ${{ github.ref == 'refs/heads/develop' }}
auto-push: ${{ github.event.workflow_run.event != 'pull_request' }}