fix: use the correct contains syntax on create-recipe-pr.yml (#3193)
This commit is contained in:
@@ -11,7 +11,7 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
create-recipe-pr:
|
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
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|||||||
Reference in New Issue
Block a user