Permalink
Cannot retrieve contributors at this time
11 lines (11 sloc)
673 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/lib/shared-environment.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
exports.CODEQL_WORKFLOW_STARTED_AT = exports.ODASA_TRACER_CONFIGURATION = void 0; | |
exports.ODASA_TRACER_CONFIGURATION = "ODASA_TRACER_CONFIGURATION"; | |
// The time at which the first action (normally init) started executing. | |
// If a workflow invokes a different action without first invoking the init | |
// action (i.e. the upload action is being used by a third-party integrator) | |
// then this variable will be assigned the start time of the action invoked | |
// rather that the init action. | |
exports.CODEQL_WORKFLOW_STARTED_AT = "CODEQL_WORKFLOW_STARTED_AT"; | |
//# sourceMappingURL=shared-environment.js.map |