generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
29 lines (29 loc) · 1012 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: 'Infra report'
description: 'GHA to prepare a report containing status of last GHA runs and PRs summary, Snyk vulnerabilities and ArgoCD environments.'
branding:
color: purple
icon: list
author: 'misiekhardcore'
inputs:
github_token:
description: >
Token to authenticate requests to GitHub.
Used to create and label pull requests and to comment.
Either GITHUB_TOKEN or a repo-scoped Personal Access Token (PAT).
argocd_token:
description: >
Token to authenticate requests to ArgoCD API. Used to get selected environments state.
snyk_token:
description: >
Token to authenticate requests to Snyk API. Used to get list of vulnerabilities for specified snyk projects.
config_file_path:
description: >
Path to config file.
required: true
outputs:
infra_report:
description: >
Parsed report containing infra information about selected environments. Output is in slack message format.
runs:
using: 'node20'
main: 'dist/index.js'