Skip to content

Update Playwright screenshots #1062

Update Playwright screenshots

Update Playwright screenshots #1062

name: Update Playwright screenshots
on:
workflow_dispatch:
env:
TURBO_TOKEN: ${{ secrets.TURBO_REMOTE_CACHE__TURBO_TOKEN }}
jobs:
screenshots:
uses: ./.github/workflows/playwright.yml
secrets: inherit
continue-on-error: true

Check failure on line 12 in .github/workflows/playwright-screenshots.yml

View workflow run for this annotation

GitHub Actions / Update Playwright screenshots

Invalid workflow file

The workflow is not valid. .github/workflows/playwright-screenshots.yml (Line: 12, Col: 5): Unexpected value 'continue-on-error'
with:
update-snapshots: true
# Download screenshots from all shards and create a pull request
pr:
name: Create pull request
runs-on: ubuntu-latest
needs: screenshots
steps:
- uses: actions/checkout@v4
- name: Download screenshots
uses: actions/download-artifact@v4
with:
pattern: screenshots
merge-multiple: true
- name: Create pull request
uses: peter-evans/create-pull-request@v7
with:
commit-message: "chore: update Playwright screenshots"
title: "chore: update Playwright screenshots"
body: This is an auto-generated pull request. All Playwright screenshots have been updated.
branch-suffix: short-commit-hash # needed to not override other pull requests created via workflows
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH_NAME: ${{ github.ref_name }}