workflows/labeler: fix double quotes (#404161)

authored by Wolfgang Walther and committed by GitHub a419df07 a3ed2519

+12 -12
+12 -12
.github/workflows/labels.yml
··· 22 - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0 23 if: | 24 github.event.pull_request.head.repo.owner.login != 'NixOS' || !( 25 - github.head_ref == "haskell-updates" || 26 - github.head_ref == "python-updates" || 27 - github.head_ref == "staging-next" || 28 - startsWith(github.head_ref, "staging-next-") 29 ) 30 with: 31 repo-token: ${{ secrets.GITHUB_TOKEN }} ··· 34 - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0 35 if: | 36 github.event.pull_request.head.repo.owner.login != 'NixOS' || !( 37 - github.head_ref == "haskell-updates" || 38 - github.head_ref == "python-updates" || 39 - github.head_ref == "staging-next" || 40 - startsWith(github.head_ref, "staging-next-") 41 ) 42 with: 43 repo-token: ${{ secrets.GITHUB_TOKEN }} ··· 49 # the backport labels. 50 if: | 51 github.event.pull_request.head.repo.owner.login == 'NixOS' && ( 52 - github.head_ref == "haskell-updates" || 53 - github.head_ref == "python-updates" || 54 - github.head_ref == "staging-next" || 55 - startsWith(github.head_ref, "staging-next-") 56 ) 57 with: 58 repo-token: ${{ secrets.GITHUB_TOKEN }}
··· 22 - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0 23 if: | 24 github.event.pull_request.head.repo.owner.login != 'NixOS' || !( 25 + github.head_ref == 'haskell-updates' || 26 + github.head_ref == 'python-updates' || 27 + github.head_ref == 'staging-next' || 28 + startsWith(github.head_ref, 'staging-next-') 29 ) 30 with: 31 repo-token: ${{ secrets.GITHUB_TOKEN }} ··· 34 - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0 35 if: | 36 github.event.pull_request.head.repo.owner.login != 'NixOS' || !( 37 + github.head_ref == 'haskell-updates' || 38 + github.head_ref == 'python-updates' || 39 + github.head_ref == 'staging-next' || 40 + startsWith(github.head_ref, 'staging-next-') 41 ) 42 with: 43 repo-token: ${{ secrets.GITHUB_TOKEN }} ··· 49 # the backport labels. 50 if: | 51 github.event.pull_request.head.repo.owner.login == 'NixOS' && ( 52 + github.head_ref == 'haskell-updates' || 53 + github.head_ref == 'python-updates' || 54 + github.head_ref == 'staging-next' || 55 + startsWith(github.head_ref, 'staging-next-') 56 ) 57 with: 58 repo-token: ${{ secrets.GITHUB_TOKEN }}