2022-01-15 09:05:37 +00:00
|
|
|
name: "Filters-maker"
|
|
|
|
description: "GitHub Action script for building my blocklist"
|
2021-07-31 16:52:16 +00:00
|
|
|
branding:
|
|
|
|
icon: 'activity'
|
|
|
|
color: 'green'
|
|
|
|
|
|
|
|
inputs:
|
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:
|
2022-01-15 09:05:37 +00:00
|
|
|
description: "Destination GitHub Repository Name"
|
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-06 01:56:06 +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-06 01:56:06 +00:00
|
|
|
description: "Git Username"
|
2021-07-31 16:52:16 +00:00
|
|
|
required: true
|
|
|
|
GIT_EMAIL:
|
2021-08-06 01:56:06 +00:00
|
|
|
description: "Git E-mail"
|
2021-07-31 16:52:16 +00:00
|
|
|
required: true
|
|
|
|
REPO_BRANCH:
|
2021-08-06 01:56:06 +00:00
|
|
|
description: "Git Branch"
|
2021-07-31 16:52:16 +00:00
|
|
|
required: true
|
2021-08-21 06:48:02 +00:00
|
|
|
sub_action_location:
|
2022-01-15 09:05:37 +00:00
|
|
|
description: "Sub Action File extension need to be .py"
|
2021-08-21 06:48:02 +00:00
|
|
|
required: false
|
|
|
|
|
2021-07-31 16:52:16 +00:00
|
|
|
runs:
|
2021-08-01 02:59:11 +00:00
|
|
|
using: "docker"
|
|
|
|
image: "Dockerfile"
|
|
|
|
args:
|
2021-08-01 03:43:21 +00:00
|
|
|
- ${{ inputs.Destination_UNAME }}
|
2021-08-01 02:59:11 +00:00
|
|
|
- ${{ inputs.Destination_REPO }}
|
|
|
|
- ${{ 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 }}
|
2021-08-21 06:48:02 +00:00
|
|
|
- ${{ inputs.sub_action_location }}
|