Fix positional arg bug in ExpressionParser.CreateTree (#4279)

This commit is contained in:
eric sciple
2026-03-05 14:56:28 -06:00
committed by GitHub
parent 99910ca83e
commit 1138dd80f7
6 changed files with 256 additions and 1 deletions
@@ -0,0 +1,13 @@
name: 'Action With Invalid Context'
description: 'Docker action that uses github context in env (only inputs is allowed)'
inputs:
my-input:
description: 'A test input'
required: false
default: 'hello'
runs:
using: 'docker'
image: 'Dockerfile'
env:
VALID: '${{ inputs.my-input }}'
INVALID: '${{ github.event.repository.private }}'