pub const GITHUB_ACTION: &str = "GITHUB_ACTION";Expand description
The name of the action currently running, or the id of a step. For example, for an action, __repo-owner_name-of-action-repo.
GitHub removes special characters, and uses the name __run when the current step runs a script without an id. If you use the same script or action more than once in the same job, the name will include a suffix that consists of the sequence number preceded by an underscore. For example, the first script you run will have the name __run, and the second script will be named __run_2. Similarly, the second invocation of actions/checkout will be actionscheckout2.