mirror of
https://github.com/ps5-linux/ps5-linux-image.git
synced 2026-07-15 21:42:27 +00:00
19 lines
414 B
YAML
19 lines
414 B
YAML
name: Dispatch to CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
dispatch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Send repository_dispatch
|
|
uses: peter-evans/repository-dispatch@v3
|
|
with:
|
|
token: ${{ secrets.DISPATCH_TOKEN }}
|
|
repository: resulknad/ps5-vps-setup
|
|
event-type: image-builder-updated
|
|
client-payload: '{"sha": "${{ github.sha }}"}'
|