filters-maker/action.yml

49 lines
1.0 KiB
YAML
Raw Normal View History

2021-07-31 16:52:16 +00:00
name: "Rani"
description: "filters filters"
branding:
icon: 'activity'
color: 'green'
inputs:
Destination_NAME:
description: "destination's name of repo"
required: true
2021-08-01 03:43:21 +00:00
Destination_UNAME:
description: "Idk"
required: true
2021-07-31 16:52:16 +00:00
Destination_REPO:
description: "repo name"
required: true
2021-08-01 04:24:39 +00:00
Destination_FOLDER:
description: "folder"
required: true
2021-07-31 16:52:16 +00:00
Destination_VERSION:
description: "version"
required: true
2021-08-02 11:50:11 +00:00
ACTION_NAME:
description: 'action script'
required: true
2021-07-31 16:52:16 +00:00
GIT_NAME:
description: 'username'
required: true
GIT_EMAIL:
description: 'email'
required: true
REPO_BRANCH:
description: 'branch'
required: true
runs:
2021-08-01 02:59:11 +00:00
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.Destination_NAME }}
2021-08-01 03:43:21 +00:00
- ${{ inputs.Destination_UNAME }}
2021-08-01 02:59:11 +00:00
- ${{ inputs.Destination_REPO }}
2021-08-01 04:24:39 +00:00
- ${{ inputs.Destination_FOLDER }}
2021-08-01 02:59:11 +00:00
- ${{ inputs.Destination_VERSION }}
2021-08-02 11:50:11 +00:00
- ${{ inputs.ACTION_FILE }}
2021-08-01 02:59:11 +00:00
- ${{ inputs.GIT_NAME }}
- ${{ inputs.GIT_EMAIL }}
- ${{ inputs.REPO_BRANCH }}