-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
41 lines (39 loc) · 882 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
31
32
33
34
35
36
37
38
39
40
41
name: 'Mirror Mercurial (hg) repository to GitHub'
description: |-
Mirror Mercurial (hg) repository to GitHub.
inputs:
source-hg-repo-url:
description: ''
required: true
# destination-git-domain:
# description: ''
# default: 'github.com'
# required: false
# destination-git-scheme:
# description: ''
# default: 'https'
# required: false
destination-git-repo-owner:
description: ''
required: true
destination-git-repo-name:
description: ''
required: true
destination-git-personal-token:
description: ''
required: true
force-push:
description: ''
required: false
default: 'false'
repo-style:
description: 'normal or pypy-style'
required: false
default: 'normal'
branding:
icon: 'arrow-up-circle'
color: 'blue'
runs:
using: 'node20'
main: 'dist/index.js'
# post: 'dist/post/index.js'