以下の GitHub Actions ワークフローの問題点がわからない人は、お願いなので読み進めてください。 on: pull_request: jobs: example: runs-on: ubuntu-latest steps: - run: echo "PR title is ${{ github.event.pull_request.title }}" - run: echo "PR Head Ref is ${{ github.head_ref }}" 要約 run の中で直接 ${{}} を使わないでください 必要な値は環境変数を経由して渡してください Pull Request のタイトルでスクリプトインジェクションしてみる おや、こんなところに Pull Request のタイトルを出力するシンプルで完璧な GitHub Actions ワークフロー定義 YAML が落ちて

