forked from quizlet/argocd-diff-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
27 lines (27 loc) · 890 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
name: 'ArgoCD Diff'
description: 'Diffs all ArgoCD apps in the repo, and provides the diff as a PR comment'
author: 'Quizlet'
inputs:
argocd-server-url:
description: ArgoCD server url (without the protocol)
required: true
argocd-token:
description: ArgoCD token for a local or project-scoped user https://argoproj.github.io/argo-cd/operator-manual/user-management/#local-usersaccounts-v15
required: true
argocd-version:
description: ArgoCD Version
default: v1.6.1
required: false
argocd-extra-cli-args:
description: Extra arguments to pass to the argocd CLI
default: --grpc-web
required: false
argocd-lovely-plugin-token:
description: "token to use for downloading the argocd-lovely plugin"
required: true
github-token:
description: Github Token
required: true
runs:
using: 'node16'
main: 'dist/index.js'