forked from bitoiu/node-js-action-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
env.template
17 lines (14 loc) · 873 Bytes
/
env.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Taken from https://developer.github.com/actions/creating-github-actions/accessing-the-runtime-environment/#environment-variables
# The proper values of these variables will be substituted when you run the GitHub Action on GitHub. If you need some of these variables for local testing, you can mock their values in your `env` file.
# This is where you would also define your custom variables that you'll define when configuring the Action on GitHub.com
HOME="/github/home."
GITHUB_WORKFLOW="My workflow"
GITHUB_ACTION="My action"
GITHUB_ACTOR="octocat"
GITHUB_REPOSITORY="octocat/hello-action"
GITHUB_EVENT_NAME="event-type"
GITHUB_EVENT_PATH=action/sample-payload.json
GITHUB_WORKSPACE="/github/workspace"
GITHUB_SHA="a10867b14bb761a232cd80139fbd4c0d33264240"
GITHUB_REF="refs/heads/master"
GITHUB_TOKEN="Add your token if you need to use the API on your local tests"