Trigger an edge patch update on modified `edge` PRs

This commit is contained in:
lynxnb 2023-02-12 03:22:00 +01:00
parent e9907d2fac
commit 9a96ea84ba
1 changed files with 5 additions and 2 deletions

View File

@ -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