-
Notifications
You must be signed in to change notification settings - Fork 23
/
action.yml
33 lines (33 loc) · 1 KB
/
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
30
31
32
33
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)
default: argo-cd-argocd-server.argo-cd
required: false
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
github-token:
description: Github Token
required: true
argocd-extra-cli-args:
description: Extra arguments to pass to the argocd CLI
default: --grpc-web
required: false
plaintext:
description: Whether to use HTTPS
default: 'false'
required: false
environment:
description: Name of env to use in the diff title posted to the PR
default: legacy
required: false
runs:
using: 'node12'
main: 'dist/index.js'