You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, there is no visible visual regression status check whenever there were more than on run attempts. With that, important changes could be invisible at the checks.
We need to change secure workflow like following:
visual-regression:
runs-on: ubuntu-latest
if: >
(github.event.workflow_run.event == 'pull_request' || (github.event.workflow_run.event == 'push' && github.event.workflow_run.run_attempt > 1)) &&
github.event.workflow_run.conclusion == 'success'
...
- name: get workflow id
uses: actions/github-script@v7
with:
script: |
# If pull request => context.event.workflow_run.id
# If push => find check suite with head sha and get newest PR (we need PR Number and workflow id)
# Following steps will need those vars
...
The text was updated successfully, but these errors were encountered:
jeripeierSBB
changed the title
Stabilize visual regression check when more than one run attempt
Stabilize visual regression check with re-runs
Jun 10, 2024
jeripeierSBB
changed the title
Stabilize visual regression check with re-runs
Stabilize visual regression check when facing a job re-run
Aug 28, 2024
Currently, there is no visible visual regression status check whenever there were more than on run attempts. With that, important changes could be invisible at the checks.
We need to change secure workflow like following:
The text was updated successfully, but these errors were encountered: