mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-01 00:45:09 +01:00
18 lines
405 B
YAML
18 lines
405 B
YAML
name: Edge CI
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [labeled, unlabeled]
|
|
|
|
jobs:
|
|
update-patches:
|
|
if: github.event.label.name == 'edge'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Update Edge patches
|
|
uses: peter-evans/repository-dispatch@v2
|
|
with:
|
|
token: ${{ secrets.EDGE_PATCH_PAT }}
|
|
repository: skyline-emu/edge-patch
|
|
event-type: update-patches
|