Run Percy Nightly and on PR (#4540)

Previously this was only running on wednesdays
This commit is contained in:
John Hill 2021-12-07 13:07:56 -08:00 committed by GitHub
parent 0d88bc8531
commit 159563ce5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,15 @@
name: "e2e-visual"
on:
workflow_dispatch:
inputs:
version:
description: '(Not configured) Which branch do you want to test?' # Limited to branch for now
required: false
default: 'master'
pull_request:
types:
- labeled
schedule:
- cron: '28 21 * * 3'
- cron: '28 21 * * 1-5'
jobs:
e2e-visual:
if: ${{ github.event.label.name == 'pr:visual' }} || ${{ github.event.workflow_dispatch }} || ${{ github.event.schedule }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2