mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-08 00:44:27 +01:00
fix: use the correct contains syntax on create-recipe-pr.yml (#3193)
This commit is contained in:
2
.github/workflows/create-recipe-pr.yml
vendored
2
.github/workflows/create-recipe-pr.yml
vendored
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user