mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-25 22:54:17 +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:
|
||||
pull_request_target:
|
||||
types: [labeled, unlabeled]
|
||||
types: [synchronize, reopened, closed, labeled, unlabeled]
|
||||
|
||||
jobs:
|
||||
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
|
||||
steps:
|
||||
- name: Update Edge patches
|
||||
|
Loading…
Reference in New Issue
Block a user