mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
* Maintenance: Create a GitHub Action for dispatching events to the FrankerFaceZ/Extension
repository.
This commit is contained in:
parent
f8fcdef363
commit
f90f7b2136
1 changed files with 23 additions and 0 deletions
23
.github/workflows/dispatch-extension-build.yml
vendored
Normal file
23
.github/workflows/dispatch-extension-build.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
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 }}"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue