forked from argocd-diff-action/argocd-diff-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
40 lines (40 loc) · 1.3 KB
/
action.yml
File metadata and controls
40 lines (40 loc) · 1.3 KB
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
34
35
36
37
38
39
40
name: 'ArgoCD Diff'
description: 'Diffs all ArgoCD apps in the repo, and provides the diff as a PR comment'
author: 'argocd-diff-action'
inputs:
argocd-exclude-paths:
description: 'ArgoCD app paths to exclude in comma separated list'
default: ''
required: false
argocd-extra-cli-args:
description: 'Extra arguments to pass to the argocd CLI'
default: '--grpc-web'
required: false
argocd-headers:
description: 'A list of headers to pass to argocd'
default: ''
required: false
argocd-server-fqdn:
description: 'ArgoCD server FQDN (i.e., without the protocol)'
required: true
argocd-server-tls:
description: 'Use TLS to communicate with ArgoCD'
default: 'true'
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` command version to install. Defaults to the server version.'
default: ''
required: false
github-token:
description: 'Github Token'
required: true
timezone:
description: 'Timezone string used for dates in the github comment.'
default: 'America/Toronto'
required: false
runs:
using: 'node20'
main: 'dist/index.js'