Skip to content

Commit e097e88

Browse files
authored
Support manual workflow runs for tests and browser tests (#16031)
Co-authored-by: Chiedo <[email protected]>
1 parent df9808d commit e097e88

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/browser-test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Browser Tests
22

3-
on: [push]
3+
on:
4+
workflow_dispatch:
5+
push:
46

57
jobs:
68
build:
@@ -15,4 +17,4 @@ jobs:
1517
- name: Test
1618
uses: ianwalter/[email protected]
1719
with:
18-
args: npm run browser-test
20+
args: npm run browser-test

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
name: Node.js Tests
44

55
on:
6+
workflow_dispatch:
67
push:
78
branches:
89
- main
@@ -89,4 +90,4 @@ jobs:
8990
if: failure() && github.ref == 'early-access'
9091
env:
9192
SLACK_WEBHOOK: ${{ secrets.DOCS_ALERTS_SLACK_WEBHOOK }}
92-
SLACK_MESSAGE: "Tests are failing on the `early-access` branch. https://github.com/github/docs-internal/tree/early-access"
93+
SLACK_MESSAGE: "Tests are failing on the `early-access` branch. https://github.com/github/docs-internal/tree/early-access"

0 commit comments

Comments
 (0)