-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
54 lines (54 loc) · 1.52 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
name: "Deploy files to repo"
description: "Deploy file/folder to another GitHub repository"
author: "NeoHsu"
branding:
icon: "git-pull-request"
color: "black"
inputs:
source_dir:
description: "Deploy file or folder from this repo"
required: false
target_github_domain:
description: "GitHub domain"
default: "github.com"
required: false
target_github_api:
description: "GitHub API URL"
default: "https://api.github.com"
required: false
target_personal_access_token:
description: "Target GitHub personal access token"
required: true
target_owner:
description: "Target GitHub owner"
required: true
target_repo:
description: "Target GitHub repository"
required: true
target_branch:
description: "Target GitHub repository branch"
default: "main"
required: false
target_dir:
description: "Deploy target file or folder path into target GitHub repository"
required: false
target_pre_copy_command:
description: "Run command on target repository before copy files"
required: false
target_pre_commit_command:
description: "Run command on target repository before git commit"
required: false
commit_msg:
description: "Custom git commit message"
required: false
pr_title:
description: "Custom PR title"
default: "Deployed files from GITHUB_REPOSITORY"
required: false
target_pr_branch:
description: "Custom PR branch"
default: "deploy-files-to-repo--branches"
required: false
runs:
using: "docker"
image: "Dockerfile"