Skip to content

Instantly share code, notes, and snippets.

@sureshg
Created November 11, 2022 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sureshg/456f1e782a78de76808418eed212651f to your computer and use it in GitHub Desktop.
Save sureshg/456f1e782a78de76808418eed212651f to your computer and use it in GitHub Desktop.
Github Action Envs
fun main() {
"""
CI=Always set to true.
GITHUB_ACTION=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.
GITHUB_ACTION_PATH=The path where an action is located. This property is only supported in composite actions. You can use this path to access files located in the same repository as the action. For example, /home/runner/work/_actions/repo-owner/name-of-action-repo/v1.
GITHUB_ACTION_REPOSITORY=For a step executing an action, this is the owner and repository name of the action. For example, actions/checkout.
GITHUB_ACTIONS=Always set to true when GitHub Actions is running the workflow. You can use this variable to differentiate when tests are being run locally or by GitHub Actions.
GITHUB_ACTOR=The name of the person or app that initiated the workflow. For example, octocat.
GITHUB_API_URL=Returns the API URL. For example: https://api.github.com.
GITHUB_BASE_REF=The name of the base ref or target branch of the pull request in a workflow run. This is only set when the event that triggers a workflow run is either pull_request or pull_request_target. For example, main.
GITHUB_ENV=The path on the runner to the file that sets environment variables from workflow commands. This file is unique to the current step and changes for each step in a job. For example, /home/runner/work/_temp/_runner_file_commands/set_env_87406d6e-4979-4d42-98e1-3dab1f48b13a. For more information, see "Workflow commands for GitHub Actions."
GITHUB_EVENT_NAME=The name of the event that triggered the workflow. For example, workflow_dispatch.
GITHUB_EVENT_PATH=The path to the file on the runner that contains the full event webhook payload. For example, /github/workflow/event.json.
GITHUB_GRAPHQL_URL=Returns the GraphQL API URL. For example: https://api.github.com/graphql.
GITHUB_HEAD_REF=The head ref or source branch of the pull request in a workflow run. This property is only set when the event that triggers a workflow run is either pull_request or pull_request_target. For example, feature-branch-1.
GITHUB_JOB=The job_id of the current job. For example, greeting_job.
GITHUB_PATH=The path on the runner to the file that sets system PATH variables from workflow commands. This file is unique to the current step and changes for each step in a job. For example, /home/runner/work/_temp/_runner_file_commands/add_path_899b9445-ad4a-400c-aa89-249f18632cf5. For more information, see "Workflow commands for GitHub Actions."
GITHUB_REF=The fully-formed ref of the branch or tag that triggered the workflow run. For workflows triggered by push, this is the branch or tag ref that was pushed. For workflows triggered by pull_request, this is the pull request merge branch. For workflows triggered by release, this is the release tag created. For other triggers, this is the branch or tag ref that triggered the workflow run. This is only set if a branch or tag is available for the event type. The ref given is fully-formed, meaning that for branches the format is refs/heads/<branch_name>, for pull requests it is refs/pull/<pr_number>/merge, and for tags it is refs/tags/<tag_name>. For example, refs/heads/feature-branch-1.
GITHUB_REF_NAME=The short ref name of the branch or tag that triggered the workflow run. This value matches the branch or tag name shown on GitHub. For example, feature-branch-1.
GITHUB_REF_PROTECTED=true if branch protections are configured for the ref that triggered the workflow run.
GITHUB_REF_TYPE=The type of ref that triggered the workflow run. Valid values are branch or tag.
GITHUB_REPOSITORY=The owner and repository name. For example, octocat/Hello-World.
GITHUB_REPOSITORY_OWNER=The repository owner's name. For example, octocat.
GITHUB_RETENTION_DAYS=The number of days that workflow run logs and artifacts are kept. For example, 90.
GITHUB_RUN_ATTEMPT=A unique number for each attempt of a particular workflow run in a repository. This number begins at 1 for the workflow run's first attempt, and increments with each re-run. For example, 3.
GITHUB_RUN_ID=A unique number for each workflow run within a repository. This number does not change if you re-run the workflow run. For example, 1658821493.
GITHUB_RUN_NUMBER=A unique number for each run of a particular workflow in a repository. This number begins at 1 for the workflow's first run, and increments with each new run. This number does not change if you re-run the workflow run. For example, 3.
GITHUB_SERVER_URL=The URL of the GitHub server. For example: https://github.com.
GITHUB_SHA=The commit SHA that triggered the workflow. The value of this commit SHA depends on the event that triggered the workflow. For more information, see "Events that trigger workflows." For example, ffac537e6cbbf934b08745a378932722df287a53.
GITHUB_STEP_SUMMARY=The path on the runner to the file that contains job summaries from workflow commands. This file is unique to the current step and changes for each step in a job. For example, /home/rob/runner/_layout/_work/_temp/_runner_file_commands/step_summary_1cb22d7f-5663-41a8-9ffc-13472605c76c. For more information, see "Workflow commands for GitHub Actions."
GITHUB_WORKFLOW=The name of the workflow. For example, My test workflow. If the workflow file doesn't specify a name, the value of this variable is the full path of the workflow file in the repository.
GITHUB_WORKSPACE=The default working directory on the runner for steps, and the default location of your repository when using the checkout action. For example, /home/runner/work/my-repo-name/my-repo-name.
RUNNER_ARCH=The architecture of the runner executing the job. Possible values are X86, X64, ARM, or ARM64.
RUNNER_DEBUG=This is set only if debug logging is enabled, and always has the value of 1. It can be useful as an indicator to enable additional debugging or verbose logging in your own job steps.
RUNNER_NAME=The name of the runner executing the job. For example, Hosted Agent
RUNNER_OS=The operating system of the runner executing the job. Possible values are Linux, Windows, or macOS. For example, Windows
RUNNER_TEMP=The path to a temporary directory on the runner. This directory is emptied at the beginning and end of each job. Note that files will not be removed if the runner's user account does not have permission to delete them. For example, D:\a\_temp
RUNNER_TOOL_CACHE=The path to the directory containing preinstalled tools for GitHub-hosted runners. For more information, see "About GitHub-hosted runners". For example, C:\hostedtoolcache\windows
"""
.trimIndent()
.lines()
.map { it.trim() }
.filter { it.isNotBlank() }
.map { it.substringBefore("=").trim() to it.substringAfter("=").trim() }
.forEach { (k, v) ->
println(
"""
/**
* $v
*/
val $k get() = System.getenv("$k")
"""
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment