-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
34 lines (34 loc) · 1016 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
30
31
32
33
34
name: "Okteto Sync"
description: "Synchronise GitHub deployments with Okteto deployments. Removes stale GitHub & Okteto deployments."
inputs:
dry-run:
description: "Run the script without making any changes."
required: false
default: false
github-token:
description: "The GitHub access token."
required: false
default: ${{ github.token }}
okteto-domain:
description: "The domain where Okteto is hosted. Defaults to Okteto cloud."
required: false
default: "cloud.okteto.net"
ignore-deployments:
description: "Comma separated list of deployments to ignore."
required: false
default: ""
outputs:
artifact-file:
description: "The filename for the mender artifact file"
value: ${{ steps.artifact-filename.outputs.filename }}
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.dry-run }}
- ${{ inputs.github-token }}
- ${{ inputs.okteto-domain }}
- ${{ inputs.ignore-deployments }}
branding:
color: "green"
icon: "grid"