-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
34 lines (32 loc) · 856 Bytes
/
action.yml
File metadata and controls
34 lines (32 loc) · 856 Bytes
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
name: GitHub actions kustomize argocd manifests
author: Gabriel Ferreira
description: GitHub action used sync ArgoCD apps
branding:
icon: feather
color: gray-dark
inputs:
app-name:
description: 'The App name'
required: true
argo-cd-token:
description: 'The ArgoCD token to authenticate'
required: true
argo-cd-url:
description: 'The ArgoCD URL'
required: true
env-prefix:
description: 'The app env prefix in argocd app name (dev|prd)'
required: true
skip-if-not-exists:
description: 'Skip sync gracefully if app does not exist (default: false)'
required: false
default: 'false'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.app-name }}
- ${{ inputs.argo-cd-token }}
- ${{ inputs.argo-cd-url }}
- ${{ inputs.env-prefix }}
- ${{ inputs.skip-if-not-exists }}