-
Select Topic AreaQuestion BodyThe 'Context availability' table has However I couldn't find what |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The jobs.<job_id>.with.<with_id> syntax you mentioned does not match any standard syntax in GitHub Actions workflows. The correct syntax for specifying inputs to a job or a step within a job is jobs.<job_id>.with. Job-level inputs: GitHub Actions does not support with at the job level. Inputs are typically specified at the step level within a job. Step-level inputs: The with keyword is used to pass inputs to an action or a script within a step. Example of using with at the step level: name: Example Workflow on: [push] jobs:
In this example, the with keyword is used to pass input1 and input2 to actions/example-action@v1. |
Beta Was this translation helpful? Give feedback.
The jobs.<job_id>.with.<with_id> syntax you mentioned does not match any standard syntax in GitHub Actions workflows. The correct syntax for specifying inputs to a job or a step within a job is jobs.<job_id>.with.
Job-level inputs: GitHub Actions does not support with at the job level. Inputs are typically specified at the step level within a job.
Step-level inputs: The with keyword is used to pass inputs to an action or a script within a step.
Example of using with at the step level:
name: Example Workflow
on: [push]
jobs:
example-job:
runs-on: ubuntu-latest