mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-26 04:24:14 +01:00
Trigger an edge patch update on modified edge
PRs
This commit is contained in:
parent
e9907d2fac
commit
9a96ea84ba
7
.github/workflows/edge-ci.yml
vendored
7
.github/workflows/edge-ci.yml
vendored
@ -2,11 +2,14 @@ name: Edge CI
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
types: [labeled, unlabeled]
|
types: [synchronize, reopened, closed, labeled, unlabeled]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-patches:
|
update-patches:
|
||||||
if: github.event.label.name == 'edge'
|
# Run if the 'edge' label was added/removed, or if an edge PR was synchronized/reopened/closed
|
||||||
|
if: |
|
||||||
|
github.event.label.name == 'edge' ||
|
||||||
|
!contains(github.event.action, 'labeled') && contains(github.event.pull_request.labels.*.name, 'edge')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Update Edge patches
|
- name: Update Edge patches
|
||||||
|
Loading…
Reference in New Issue
Block a user