mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
23 lines
508 B
YAML
23 lines
508 B
YAML
name: Dispatch Extension Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
dispatch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Dispatch to Extension Repo
|
|
uses: peter-evans/repository-dispatch@v3
|
|
with:
|
|
token: ${{ secrets.DISPATCH_PAT }}
|
|
repository: FrankerFaceZ/Extension
|
|
event-type: build-trigger
|
|
client-payload: |-
|
|
{
|
|
"repo": {
|
|
"name": "${{ github.repository }}"
|
|
}
|
|
}
|