parent
17c6406e6c
commit
ad8b43467e
24
.github/workflows/trigger_build_firefox_stable.yml
vendored
Normal file
24
.github/workflows/trigger_build_firefox_stable.yml
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
name: "Firefox Stable Builder"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- release-*
|
||||||
|
paths:
|
||||||
|
- browser_patches/firefox-stable/BUILD_NUMBER
|
||||||
|
- .github/workflows/trigger_build_firefox_stable.yml
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
trigger:
|
||||||
|
name: "trigger"
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- run: |
|
||||||
|
curl -X POST \
|
||||||
|
-H "Accept: application/vnd.github.v3+json" \
|
||||||
|
-H "Authorization: token ${GH_TOKEN}" \
|
||||||
|
--data '{"event_type": "build_firefox_stable"}' \
|
||||||
|
https://api.github.com/repos/microsoft/playwright-internal/dispatches
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.REPOSITORY_DISPATCH_PERSONAL_ACCESS_TOKEN }}
|
||||||
Loading…
Reference in a new issue