.github: Fix use of 'contains'

(cherry picked from commit 44c0e1b756)
This commit is contained in:
George Joseph 2023-06-26 08:45:16 -06:00 committed by Asterisk Development Team
parent 157d478b27
commit f6630916f4
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ jobs:
PROpenUpdateGateTests:
if: ${{ ( github.event.action != 'labeled' || github.event.label.name == vars.RECHECK_LABEL ) && contains(['success','skipped','failure'], needs.PROpenUpdateGateTestMatrix.result ) }}
if: ${{ ( github.event.action != 'labeled' || github.event.label.name == vars.RECHECK_LABEL ) && contains(fromJSON('["success","skipped","failure"]'), needs.PROpenUpdateGateTestMatrix.result ) }}
runs-on: ubuntu-latest
needs: PROpenUpdateGateTestMatrix
steps: