-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathaction.yml
34 lines (34 loc) · 994 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
name: 'GitHub Forks Sync Action'
description: 'GitHub Action to synchronise forks'
author: 'TobKed'
branding:
icon: upload-cloud
color: green
inputs:
github_token:
description: 'Token for the repo. Can be passed in using $\{{ secrets.GITHUB_TOKEN }}'
required: true
upstream_repository:
description: 'Repository name to clone.'
required: true
target_repository:
description: 'Repository name to push. Default or empty value represents current github repository (${GITHUB_REPOSITORY})'
default: ''
required: false
upstream_branch:
description: 'Source branch from which changes will be pushed.'
default: 'master'
required: false
target_branch:
description: 'Destination branch to push changes.'
default: 'master'
required: false
force:
description: 'Determines if force push is used'
required: false
tags:
description: 'Determines if --tags is used'
required: false
runs:
using: 'node16'
main: 'start.js'