forked from cpina/github-action-push-to-another-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
76 lines (75 loc) · 2.36 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Push directories to another repository
description: >-
Useful to push files to another repository to be used, for example, via GitHub
Pages
inputs:
source-directories:
description: Source directories from the origin
required: true
destination-directory-prefixes:
description: >-
[Optional] Destination directory prefixes, paired in order with the source directories
default: ""
required: false
destination-github-username:
description: Name of the destination username/organization
required: true
destination-repository-name:
description: Destination repository
required: true
user-email:
description: Email for the git commit
required: true
github-server:
description: "Github server"
default: "github.com"
required: false
user-name:
description: >-
[Optional] Name for the git commit. Defaults to the destination
username/organization name
required: false
default: ""
destination-repository-username:
description: "[Optional] Username/organization for the destination repository"
required: false
default: ""
target-branch:
description: >-
[Optional] set target branch name for the destination repository. Defaults
to "main"
default: main
required: false
commit-message:
description: >-
[Optional] commit message for the output repository. ORIGIN_COMMIT is
replaced by the URL@commit in the origin repo
default: Update from ORIGIN_COMMIT
required: false
target-directory:
description: "[Optional] The directory to wipe and replace in the target repository"
default: ""
required: false
force:
description: "[Optional] If 'true', will force push and thus overwrite the target repo's history"
default: "false"
required: false
runs:
using: docker
image: Dockerfile
args:
- "${{ inputs.source-directories }}"
- "${{ inputs.destination-directory-prefixes }}"
- "${{ inputs.destination-github-username }}"
- "${{ inputs.destination-repository-name }}"
- "${{ inputs.github-server }}"
- "${{ inputs.user-email }}"
- "${{ inputs.user-name }}"
- "${{ inputs.destination-repository-username }}"
- "${{ inputs.target-branch }}"
- "${{ inputs.commit-message }}"
- "${{ inputs.target-directory }}"
- "${{ inputs.force }}"
branding:
icon: git-commit
color: green