Add github-server input parameter

This commit is contained in:
Piotr Joński 2021-06-24 08:57:24 +02:00 committed by GitHub
parent 2ebe0cc15f
commit c3f0aa4db9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,11 @@ inputs:
description: '[Optional] commit message for the output repository. ORIGIN_COMMIT is replaced by the URL@commit in the origin repo' 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' default: 'Update from ORIGIN_COMMIT'
required: false required: false
github-server:
description: 'Github server'
default: 'github.com'
required: true
runs: runs:
using: 'docker' using: 'docker'
image: 'Dockerfile' image: 'Dockerfile'
@ -41,6 +46,7 @@ runs:
- ${{ inputs.destination-repository-username }} - ${{ inputs.destination-repository-username }}
- ${{ inputs.target-branch }} - ${{ inputs.target-branch }}
- ${{ inputs.commit-message }} - ${{ inputs.commit-message }}
- ${{ inputs.github-server }}
branding: branding:
icon: 'git-commit' icon: 'git-commit'
color: 'green' color: 'green'