Skip to content

Commit

Permalink
* Maintenance: Create a GitHub Action for dispatching events to the `…
Browse files Browse the repository at this point in the history
…FrankerFaceZ/Extension` repository.
  • Loading branch information
SirStendec committed Oct 7, 2024
1 parent 91bce1e commit a1dbad9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/dispatch-extension-build.yml
Original file line number Diff line number Diff line change
@@ -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 }}"
}
}

0 comments on commit a1dbad9

Please sign in to comment.