45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: "Filters-maker"
|
|
description: "GitHub Action script for building my blocklist"
|
|
branding:
|
|
icon: 'activity'
|
|
color: 'green'
|
|
|
|
inputs:
|
|
Destination_UNAME:
|
|
description: "Destination GitHub Username"
|
|
required: true
|
|
Destination_REPO:
|
|
description: "Destination GitHub Repository Name"
|
|
required: true
|
|
Destination_VERSION:
|
|
description: "Version on Destination etc. Pro , ucate , Hell"
|
|
required: true
|
|
ACTION_FILE:
|
|
description: "action script for example look at action.example.py I'm calling this the Really Action Script"
|
|
required: true
|
|
GIT_NAME:
|
|
description: "Git Username"
|
|
required: true
|
|
GIT_EMAIL:
|
|
description: "Git E-mail"
|
|
required: true
|
|
REPO_BRANCH:
|
|
description: "Git Branch"
|
|
required: true
|
|
sub_action_location:
|
|
description: "Sub Action File extension need to be .py"
|
|
required: false
|
|
|
|
runs:
|
|
using: "docker"
|
|
image: "Dockerfile"
|
|
args:
|
|
- ${{ inputs.Destination_UNAME }}
|
|
- ${{ inputs.Destination_REPO }}
|
|
- ${{ inputs.Destination_VERSION }}
|
|
- ${{ inputs.ACTION_FILE }}
|
|
- ${{ inputs.GIT_NAME }}
|
|
- ${{ inputs.GIT_EMAIL }}
|
|
- ${{ inputs.REPO_BRANCH }}
|
|
- ${{ inputs.sub_action_location }}
|