From 2cadc1db7e886fa07f30f036b91b9d8295ac252f Mon Sep 17 00:00:00 2001 From: Salvatore Testa Date: Wed, 2 Jul 2025 00:44:55 +0200 Subject: [PATCH] fix: use the correct `contains` syntax on create-recipe-pr.yml (#3193) --- .github/workflows/create-recipe-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-recipe-pr.yml b/.github/workflows/create-recipe-pr.yml index 9bbba41d..2e75fb1a 100644 --- a/.github/workflows/create-recipe-pr.yml +++ b/.github/workflows/create-recipe-pr.yml @@ -11,7 +11,7 @@ permissions: jobs: create-recipe-pr: - if: github.event.label.name == 'recipe submission' || github.event.issue.labels.*.name contains 'recipe submission' + if: ${{ github.event.label.name == 'recipe submission' || contains(github.event.issue.labels.*.name, 'recipe submission') }} runs-on: ubuntu-latest env: