Permalink
Cannot retrieve contributors at this time
23 lines (23 sloc)
815 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/resolve-environment/action.yml
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
name: 'CodeQL: Resolve Build Environment' | |
description: '[Experimental] Attempt to infer a build environment suitable for automatic builds' | |
author: 'GitHub' | |
inputs: | |
token: | |
default: ${{ github.token }} | |
matrix: | |
default: ${{ toJson(matrix) }} | |
language: | |
description: The language to infer the build environment configuration for. | |
required: true | |
working-directory: | |
description: >- | |
Resolve the build environment based on the files located at the specified | |
path (relative to $GITHUB_WORKSPACE). If this input is not set, then the | |
build environment is resolved based on the files in $GITHUB_WORKSPACE. | |
required: false | |
outputs: | |
environment: | |
description: The inferred build environment configuration. | |
runs: | |
using: node20 | |
main: '../lib/resolve-environment-action.js' |