🚀

Github ActionsでPull Requestのラベルに絵文字を使いたい

2024/04/09に公開

問題

Pull Requestに🚀の絵文字の含まれるラベルがついているときだけjobを実行したい場合、こんな風に書くとNested mappings are not allowed in compact mappingsのシンタックスエラーが発生する。

jobs:
  build:
    if: contains(github.event.pull_request.labels.*.name,  ':rocket: release')

ワークアラウンド

jobs:
  build:
    if: |
      contains(github.event.pull_request.labels.*.name,  ':rocket: release')

or

jobs:
  build:
    if: "${{ contains(github.event.pull_request.labels.*.name,  ':rocket: release') }}"

or

jobs:
  build:
    if: contains(github.event.pull_request.labels.*.name,  format('{0}rocket{0} release', ':'))

参考

https://github.com/github/vscode-github-actions/issues/205
https://github.com/actions/runner/issues/1019

Discussion