mirror of
https://github.com/github/codeql-action.git
synced 2026-01-01 04:00:24 +08:00
18 lines
514 B
YAML
18 lines
514 B
YAML
name: 'CodeQL: Resolve Build Environment'
|
|
description: 'Attempt to infer a suitable environment configuration for the autobuilder'
|
|
author: 'GitHub'
|
|
inputs:
|
|
token:
|
|
default: ${{ github.token }}
|
|
matrix:
|
|
default: ${{ toJson(matrix) }}
|
|
language:
|
|
description: The language to infer the build environment configuration for.
|
|
required: true
|
|
outputs:
|
|
configuration:
|
|
description: The inferred build environment configuration.
|
|
runs:
|
|
using: 'node16'
|
|
main: '../lib/resolve-environment-action.js'
|