Skip to content

Commit ab4629a

Browse files
authored
devops: add trigger workflow to deprecated webkit builds (#5836)
1 parent 8dc7405 commit ab4629a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "Deprecated WebKit Mac 10.14 Builder"
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- release-*
8+
paths:
9+
- browser_patches/depcrecated-webkit-mac-10.14/BUILD_NUMBER
10+
- .github/workflows/trigger_build_deprecated_webkit_mac_10.14.yml
11+
12+
jobs:
13+
trigger:
14+
name: "trigger"
15+
runs-on: ubuntu-18.04
16+
steps:
17+
- run: |
18+
curl -X POST \
19+
-H "Accept: application/vnd.github.v3+json" \
20+
-H "Authorization: token ${GH_TOKEN}" \
21+
--data '{"event_type": "build_deprecated_webkit_mac_10.14"}' \
22+
https://api.github.com/repos/microsoft/playwright-internal/dispatches
23+
env:
24+
GH_TOKEN: ${{ secrets.REPOSITORY_DISPATCH_PERSONAL_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)