-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
30 lines (30 loc) · 864 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
---
name: 'Platform.sh Database Backup and S3 Sync'
description: 'Execute a database backup/dump sync to S3.'
author: 'Mark Dorison'
inputs:
platformsh_project:
description: 'Platform.sh project ID.'
required: true
platformsh_environment:
description: 'Platform.sh environment name.'
required: true
platformsh_relationship:
description: 'Platform.sh relationship for multiple db projects.'
required: false
platformsh_app:
description: 'Platform.sh app for multiple app projects.'
required: false
aws_s3_bucket:
description: 'AWS S3 bucket name.'
required: true
db_dump_filename_base:
description: 'Filename for the database dump. A timestamp will be appended after it.'
required: false
default: 'db-dump'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'archive'
color: 'gray-dark'