-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
28 lines (28 loc) · 727 Bytes
/
action.yml
File metadata and controls
28 lines (28 loc) · 727 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
name: 'Deploy with shipit'
description: 'Use shipit to update GitOps deployments'
inputs:
provider:
description: JSON object with your provider configuration
required: true
changes:
description: JSON array of changes to apply
required: true
branch:
description: Branch to apply changes on
required: true
author:
description: Commit author
required: false
message:
description: Commit message
required: false
outputs:
runs:
using: 'docker'
image: 'Dockerfile'
env:
SHIPIT_PROVIDER: ${{ inputs.provider }}
SHIPIT_CHANGES: ${{ inputs.changes }}
SHIPIT_BRANCH: ${{ inputs.branch }}
SHIPIT_AUTHOR: ${{ inputs.author }}
SHIPIT_MESSAGE: ${{ inputs.message }}