mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-02 10:34:27 +03:00
af48a8a1f1
- drive-by: updated NPM Action - replaced ubuntu-latest by ubuntu-20 so its pinned Extracted from #5746
25 lines
624 B
YAML
25 lines
624 B
YAML
name: "FFMPEG Builder"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- release-*
|
|
paths:
|
|
- browser_patches/ffmpeg/BUILD_NUMBER
|
|
- .github/workflows/trigger_build_ffmpeg.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_ffmpeg"}' \
|
|
https://api.github.com/repos/microsoft/playwright-internal/dispatches
|
|
env:
|
|
GH_TOKEN: ${{ secrets.REPOSITORY_DISPATCH_PERSONAL_ACCESS_TOKEN }}
|