Create action.yaml

This commit is contained in:
Minoplhy 2021-07-31 23:52:16 +07:00 committed by GitHub
parent 89295c8619
commit bf445e7f59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

36
action.yaml Normal file
View File

@ -0,0 +1,36 @@
name: "Rani"
description: "filters filters"
branding:
icon: 'activity'
color: 'green'
inputs:
Destination_NAME:
description: "destination's name of repo"
required: true
Destination_REPO:
description: "repo name"
required: true
Destination_VERSION:
description: "version"
required: true
GIT_NAME:
description: 'username'
required: true
GIT_EMAIL:
description: 'email'
required: true
REPO_BRANCH:
description: 'branch'
required: true
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.Destination_NAME }}
- ${{ inputs.Destination_REPO }}
- ${{ inputs.Destination_VERSION }}
- ${{ inputs.GIT_NAME }}
- ${{ inputs.GIT_EMAIL }}
- ${{ inputs.REPO_BRANCH }}