We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc7405 commit ab4629aCopy full SHA for ab4629a
.github/workflows/trigger_build_deprecated_webkit_mac_10.14.yml
@@ -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