Back to list
zenn_feed 2026年3月7日

【GitHub Actions】スクリプトインジェクションの実践例

【GitHub Actions】スクリプトインジェクションの実践例

Translated: 2026/3/7 9:21:13

Japanese Translation

以下の 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 の中で直接 ${{}} を使わないでください 必...

Original Content

! 以下の 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 の中で直接 ${{}} を使わないでください 必...