File tree Expand file tree Collapse file tree 2 files changed +61
-1
lines changed
actions/trickle-down-changelog Expand file tree Collapse file tree 2 files changed +61
-1
lines changed Original file line number Diff line number Diff line change 1+ # Do not commit your actual .env file to Git! This may contain secrets or other
2+ # private information.
3+
4+ # Enable/disable step debug logging (default: `false`). For local debugging, it
5+ # may be useful to set it to `true`.
6+ ACTIONS_STEP_DEBUG = true
7+
8+ # GitHub Actions inputs should follow `INPUT_<name>` format (case-insensitive).
9+ # if you want to run locally, token needs to be inputted, just don't merge it :)
10+ INPUT_token = " "
11+
12+ # GitHub Actions default environment variables. These are set for every run of a
13+ # workflow and can be used in your actions. Setting the value here will override
14+ # any value set by the local-action tool.
15+ # https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
16+
17+ # CI="true"
18+ # GITHUB_ACTION=""
19+ # GITHUB_ACTION_PATH=""
20+ # GITHUB_ACTION_REPOSITORY=""
21+ # GITHUB_ACTIONS=""
22+ # GITHUB_ACTOR="mona"
23+ # GITHUB_ACTOR_ID="123456789"
24+ # GITHUB_API_URL=""
25+ # GITHUB_BASE_REF=""
26+ # GITHUB_ENV=""
27+ # GITHUB_EVENT_NAME=""
28+ # GITHUB_EVENT_PATH=""
29+ # GITHUB_GRAPHQL_URL=""
30+ # GITHUB_HEAD_REF=""
31+ # GITHUB_JOB=""
32+ # GITHUB_OUTPUT=""
33+ # GITHUB_PATH=""
34+ # GITHUB_REF=""
35+ # GITHUB_REF_NAME=""
36+ # GITHUB_REF_PROTECTED=""
37+ # GITHUB_REF_TYPE=""
38+ # GITHUB_REPOSITORY=""
39+ # GITHUB_REPOSITORY_ID=""
40+ # GITHUB_REPOSITORY_OWNER=""
41+ # GITHUB_REPOSITORY_OWNER_ID=""
42+ # GITHUB_RETENTION_DAYS=""
43+ # GITHUB_RUN_ATTEMPT=""
44+ # GITHUB_RUN_ID=""
45+ # GITHUB_RUN_NUMBER=""
46+ # GITHUB_SERVER_URL=""
47+ # GITHUB_SHA=""
48+ # GITHUB_STEP_SUMMARY=""
49+ # GITHUB_TRIGGERING_ACTOR=""
50+ # GITHUB_WORKFLOW=""
51+ # GITHUB_WORKFLOW_REF=""
52+ # GITHUB_WORKFLOW_SHA=""
53+ # GITHUB_WORKSPACE=""
54+ # RUNNER_ARCH=""
55+ # RUNNER_DEBUG=""
56+ # RUNNER_NAME=""
57+ # RUNNER_OS=""
58+ # RUNNER_TEMP=""
59+ # RUNNER_TOOL_CACHE=""
Original file line number Diff line number Diff line change 33 "version" : " 1.0.0" ,
44 "main" : " index.js" ,
55 "scripts" : {
6- "build" : " ncc build --target es6 index.ts"
6+ "build" : " ncc build --target es6 index.ts" ,
7+ "dev" : " npx @github/local-action run . index.ts .env.example"
78 },
89 "author" : " github.com/asafdl" ,
910 "license" : " ISC" ,
You can’t perform that action at this time.
0 commit comments