Skip to content

Commit

Permalink
devops: add trigger workflow to deprecated webkit builds (#5836)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Mar 16, 2021
1 parent 8dc7405 commit ab4629a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/trigger_build_deprecated_webkit_mac_10.14.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Deprecated WebKit Mac 10.14 Builder"

on:
push:
branches:
- master
- release-*
paths:
- browser_patches/depcrecated-webkit-mac-10.14/BUILD_NUMBER
- .github/workflows/trigger_build_deprecated_webkit_mac_10.14.yml

jobs:
trigger:
name: "trigger"
runs-on: ubuntu-18.04
steps:
- run: |
curl -X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${GH_TOKEN}" \
--data '{"event_type": "build_deprecated_webkit_mac_10.14"}' \
https://api.github.com/repos/microsoft/playwright-internal/dispatches
env:
GH_TOKEN: ${{ secrets.REPOSITORY_DISPATCH_PERSONAL_ACCESS_TOKEN }}

0 comments on commit ab4629a

Please sign in to comment.