diff --git a/.github/workflows/dispatch-extension-build.yml b/.github/workflows/dispatch-extension-build.yml new file mode 100644 index 00000000..045e814f --- /dev/null +++ b/.github/workflows/dispatch-extension-build.yml @@ -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 }}" + } + }