-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
29 lines (29 loc) · 893 Bytes
/
Copy pathaction.yml
File metadata and controls
29 lines (29 loc) · 893 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
name: 'Sendgrid Sync'
description: 'Syncronize Sendgrid Templates'
inputs:
dry-run:
required: false
description: "Only show affected files"
default: "false"
mode:
required: true
description: "The mode to run the action. Could be `sync` or `apply`"
committer-email:
required: false
description: "The email to use when creating the commits"
committer-name:
required: false
description: "The name to use when creating the commits"
template-name:
required: false
description: "Specific template directory name to apply (skips git diff detection)"
default: ""
runs:
using: 'docker'
image: 'Dockerfile'
args:
- --dry-run ${{ inputs.dry-run }}
- --mode ${{ inputs.mode }}
- --committer-email ${{ inputs.committer-email }}
- --committer-name ${{ inputs.committer-name }}
- --template-name ${{ inputs.template-name }}