From b6375b21c0996de13051110c80ff72ec1669261c Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sun, 4 May 2025 19:11:36 +0200 Subject: [PATCH] workflows/backport: fix conditional --- .github/workflows/backport.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index fe86eb75cac4..2d09c59819a7 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -14,7 +14,7 @@ permissions: {} jobs: backport: name: Backport Pull Request - if: github.repository_owner == 'NixOS' && github.event.pull_request.merged == true && (github.pull_request.action != 'labeled' || startsWith(github.event.label.name, 'backport')) + if: github.repository_owner == 'NixOS' && github.event.pull_request.merged == true && (github.event.action != 'labeled' || startsWith(github.event.label.name, 'backport')) runs-on: ubuntu-24.04 steps: # Use a GitHub App to create the PR so that CI gets triggered