[CI] Fix package job not running with PR label

The job would only run when the PR was labeled since
`github.event.label.name` only available when `labeled` type event
recieved
This commit is contained in:
Calum Lind 2022-01-21 12:20:37 +00:00
parent 9d4ca77ef7
commit 5931d0cc0b
No known key found for this signature in database
GPG Key ID: 90597A687B836BA3
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ on:
jobs:
windows_package:
runs-on: windows-2019
if: (github.event_name != 'pull_request' || github.event.label.name == 'windows')
if: (github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'package'))
strategy:
matrix:
arch: [x64, x86]