Skip to content
box

GitHub Action

Default Environment

v1.0.1 Latest version

Default Environment

box

Default Environment

Populates the `env` context with the default environment variables

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Default Environment

uses: Actions-R-Us/[email protected]

Learn more about this action in Actions-R-Us/default-env

Choose a version

Default Environment

A github action that populates the workflow context env map with the default environment variables available in all environments.

After running this action, each subsequent step will have access to these variables through the env context.

Usage

Basic:

- uses: Actions-R-Us/default-env@v1

To modify the values of the environment variables seen by this action, modify the env map of this action.

- uses: Actions-R-Us/default-env@v1
  env:
    GITHUB_ACTOR: 'github'
    GITHUB_REF: 'master'

After running this action, the environment variables specified will replace the default ones