-
Notifications
You must be signed in to change notification settings - Fork 8
54 lines (49 loc) · 1.5 KB
/
daily-image-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Daily broken images check
on:
pull_request:
branches:
- main
schedule:
# Every Weekday at 8 AM AEDT - https://cron.help/#0_21_*_*_SUN-THU
- cron: "0 21 * * SUN-THU"
workflow_dispatch:
inputs:
deploy_url:
description: "The URL of the site to test"
required: true
tests_to_run:
description: "The tests to run"
required: true
create_issue:
description: "Create an issue if there are broken images"
type: boolean
default: true
required: true
defaults:
run:
shell: pwsh
jobs:
check-broken-images:
name: Run Playwright Tests
uses: ./.github/workflows/template-ui-tests.yml
with:
deploy_url: ${{ inputs.deploy_url || 'https://ssw.com.au' }}
tests_to_run: ${{ inputs.tests_to_run || 'images'}}
create-an-issue:
name: GitHub Issue
runs-on: ubuntu-latest
needs: check-broken-images
if: ${{ inputs.create_issue == true && failure() }}
steps:
- name: Playwright Artifact
run: |
echo "Artifact Id: ${{ needs.check-broken-images.outputs.artifact-id }}"
# - name: Create an Issue
# uses: JasonEtco/create-an-issue@v2
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TITLE: "Broken Images on Homepage"
# ARTIFACT_ID: ${{ needs.check-broken-images.outputs.artifact-id }}
# GITHUB_RUN_ID: ${{ github.run_id }}
# with:
# filename: .github/ISSUE_TEMPLATE/auto_bug_report.md