fix: use the correct contains syntax on create-recipe-pr.yml (#3193)

This commit is contained in:
Salvatore Testa
2025-07-02 00:44:55 +02:00
committed by GitHub
parent 89d3658ae1
commit 2cadc1db7e

View File

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