filters-maker/action.yml

49 lines
1.2 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:
2021-08-05 13:48:14 +00:00
description: "Destination GitHub Username"
2021-08-01 03:43:21 +00:00
required: true
2021-07-31 16:52:16 +00:00
Destination_REPO:
2021-08-05 13:48:14 +00:00
description: "Destination GitHub Repo Name"
2021-07-31 16:52:16 +00:00
required: true
2021-08-01 04:24:39 +00:00
Destination_FOLDER:
2021-08-05 13:48:14 +00:00
description: "folder of action"
2021-08-01 04:24:39 +00:00
required: true
2021-07-31 16:52:16 +00:00
Destination_VERSION:
2021-08-05 13:48:14 +00:00
description: "Version on Destination etc. Pro , ucate , Hell"
2021-07-31 16:52:16 +00:00
required: true
2021-08-02 14:08:03 +00:00
ACTION_FILE:
2021-08-05 13:48:14 +00:00
description: 'action script for example look at action.example.py I'm calling this the Really Action Script'
2021-08-02 11:50:11 +00:00
required: true
2021-07-31 16:52:16 +00:00
GIT_NAME:
2021-08-05 13:48:14 +00:00
description: 'Git Username'
2021-07-31 16:52:16 +00:00
required: true
GIT_EMAIL:
2021-08-05 13:48:14 +00:00
description: 'Git E-mail'
2021-07-31 16:52:16 +00:00
required: true
REPO_BRANCH:
2021-08-05 13:48:14 +00:00
description: 'Git Branch'
2021-07-31 16:52:16 +00:00
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 }}