github-push-action/action.yml
Pascal Zimmermann 21d44fe927
Revert "Add deploy key functionality (#115)" (#119)
This reverts commit d4a6a7883a40e2ff04f1943ca6871fc03fc5a738.
2022-05-04 13:04:15 +02:00

36 lines
955 B
YAML

name: 'GitHub Push'
description: 'Pushing to GitHub repository local changes'
author: 'ad-m'
branding:
icon: upload-cloud
color: green
inputs:
github_token:
description: 'GitHub token or PAT token'
required: true
default: ${{ github.token }}
github_url:
description: 'GitHub url or GitHub Enterprise url'
required: true
default: ${{ github.server_url }}
repository:
description: 'Repository name to push. Default or empty value represents current github repository (${GITHUB_REPOSITORY})'
default: ''
required: false
branch:
description: 'Destination branch to push changes'
required: false
force:
description: 'Determines if force push is used'
required: false
tags:
description: 'Determines if --tags is used'
required: false
directory:
description: 'Directory to change to before pushing.'
required: false
default: '.'
runs:
using: 'node12'
main: 'start.js'