Skip to content

Commit 35592f1

Browse files
committed
"Update docker.yml to dispatch screenshots.yml workflow instead of automation-test.yml, and modify screenshots.yml to trigger on version tags and allow manual triggering."
1 parent 4bdf012 commit 35592f1

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
token: ${{ github.token }}
1818
repo: ${{ github.event.repository.name }}
1919
owner: ${{ github.repository_owner }}
20-
workflow: automation-test.yml
20+
workflow: screenshots.yml
2121
- name: Await Run ID ${{ steps.return_dispatch.outputs.run_id }}
2222
uses: Codex-/await-remote-run@v1.0.0
2323
with:

.github/workflows/screenshots.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Run Headless Browser Tests
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
tags:
6+
- 'v*.*.*' # Triggers on version tags
7+
workflow_dispatch: # Allows manual triggering
8+
49

510
jobs:
611
build:

0 commit comments

Comments
 (0)