You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,11 @@ inputs:
34
34
default: "true"
35
35
type: boolean
36
36
description: "If true, the files will be marked as temporary and deleted after 14 days. Otherwise they will persist in S3 indefinitely."
37
+
copy-only:
38
+
required: false
39
+
default: "false"
40
+
type: boolean
41
+
description: "If true, uses rclone copy instead of sync. The files will be copied to the destination without affecting the existing files that do not exist in the source."
Copy file name to clipboardExpand all lines: action.yml
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,11 @@ inputs:
24
24
default: "true"
25
25
type: boolean
26
26
description: "If true, the files will be marked as temporary and deleted after 14 days. Otherwise they will persist in S3 indefinitely."
27
+
copy-only:
28
+
required: false
29
+
default: "false"
30
+
type: boolean
31
+
description: "If true, uses rclone copy instead of sync. The files will be copied to the destination without affecting the existing files that do not exist in the source."
27
32
28
33
runs:
29
34
using: "composite"
@@ -49,4 +54,4 @@ runs:
49
54
# Check temporary != 'false' so any other value is marked as temporary since there's no actual validation of boolean or required inputs
50
55
# The production bucket doesn't have a lifecycle rule, so omitting temporary just results in a tag on files. They won't actually be deleted
0 commit comments