mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 13:45:36 +03:00
35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
name: "Trigger: Chromium with Symbols Builds"
|
|
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
ref:
|
|
description: 'Playwright SHA / ref to build Chromium With Symbols'
|
|
required: true
|
|
default: 'master'
|
|
release:
|
|
types: [published]
|
|
push:
|
|
branches:
|
|
- master
|
|
- release-*
|
|
paths:
|
|
- browser_patches/chromium/BUILD_NUMBER
|
|
- .github/workflows/trigger_build_chromium_with_symbols.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_chromium_with_symbols\", \"client_payload\": {\"ref\": \"${GHREF}\"}}" \
|
|
https://api.github.com/repos/microsoft/playwright-internal/dispatches
|
|
env:
|
|
GH_TOKEN: ${{ secrets.REPOSITORY_DISPATCH_PERSONAL_ACCESS_TOKEN }}
|
|
GHREF: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || github.sha }}
|