diff options
| author | Alex Dunn <[email protected]> | 2022-05-13 09:57:42 -0700 |
|---|---|---|
| committer | Alex Dunn <[email protected]> | 2022-05-13 09:57:42 -0700 |
| commit | e0d3333df269715d7d1480a859e083539a339ff7 (patch) | |
| tree | 2065cb86ba27e8bfea0f1122a6713afe477623d9 /.github/workflows | |
| parent | Testing version increment and label filtering for release build (diff) | |
| download | zen-e0d3333df269715d7d1480a859e083539a339ff7.tar.xz zen-e0d3333df269715d7d1480a859e083539a339ff7.zip | |
Testing label trigger
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/update_release.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/update_release.yml b/.github/workflows/update_release.yml index 734480134..ec0fcba52 100644 --- a/.github/workflows/update_release.yml +++ b/.github/workflows/update_release.yml @@ -3,13 +3,14 @@ name: Build release on: # push pull_request: - types: [closed, labeled] + types: [closed] branches: [ main ] jobs: windows-build: - # if: github.event.pull_request.merged == true - if: contains( github.event.pull_request.labels.*.name, 'release') + if: >- + github.event.pull_request.merged == true && + contains( github.event.pull_request.labels.*.name, 'release') name: Build Windows runs-on: [self-hosted, windows, x64] strategy: |