20 lines
1018 B
Plaintext
20 lines
1018 B
Plaintext
# This should be the value of the GitHub Actions actor who triggered a run. The
|
|
# CI script will inject this value from the GitHub Actions context to verify
|
|
# whether changing certain README fields is allowed. In local development, you
|
|
# can set this to your GitHub username.
|
|
CI_ACTOR=
|
|
|
|
# This is the configurable base URL for accessing the GitHub REST API. This
|
|
# value will be injected by the CI script's Actions context, but if the value is
|
|
# not defined (either in CI or when running locally), "https://api.github.com/"
|
|
# will be used as a fallback.
|
|
GITHUB_API_URL=
|
|
|
|
# This is the API token for the user that will be used to authenticate calls to
|
|
# the GitHub API. In CI, the value will be loaded with a token belonging to a
|
|
# Coder Registry admin to verify whether modifying certain README fields is
|
|
# allowed. In local development, you can set a token with the read:org
|
|
# permission. If the loaded token does not belong to a Coder employee, certain
|
|
# README verification steps will be skipped.
|
|
GITHUB_API_TOKEN=
|