initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
25
github/codeql-action-v2/resolve-environment/action.yml
Normal file
25
github/codeql-action-v2/resolve-environment/action.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: 'CodeQL: Resolve Build Environment'
|
||||
description: '[Experimental] Attempt to infer a build environment suitable for automatic builds'
|
||||
author: 'GitHub'
|
||||
inputs:
|
||||
token:
|
||||
description: "GitHub token to use for authenticating with this instance of GitHub. The token needs the `security-events: write` permission."
|
||||
required: false
|
||||
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: node16
|
||||
main: '../lib/resolve-environment-action.js'
|
||||
Loading…
Add table
Add a link
Reference in a new issue