feat(delete-action): sort the input params in forgejo action
All checks were successful
build / build (push) Successful in 15s

This commit is contained in:
Stephan Lo 2025-10-15 11:17:40 +02:00
parent c197daefa0
commit ace8efa150

View file

@ -3,38 +3,44 @@ name: delete
on:
workflow_dispatch:
inputs:
name:
a_name:
type: string
description: "App name to delete"
required: true
appVersion:
default: ""
b_appVersion:
type: string
description: "Version of the app to delete"
required: true
org:
default: ""
c_org:
type: string
description: "Organization of the app to delete"
required: true
region:
default: ""
d_region:
type: string
description: "Region of the app to delete"
required: true
cloudletOrg:
default: ""
e_cloudletOrg:
type: string
description: "Cloudlet organization of the app to delete"
required: true
cloudlet:
default: ""
f_cloudlet:
type: string
description: "Cloudlet of the app to delete"
required: true
default: ""
env:
INPUT_NAME: ${{ inputs.name }}
INPUT_APPVERSION: ${{ inputs.appVersion }}
INPUT_ORG: ${{ inputs.org }}
INPUT_REGION: ${{ inputs.region }}
INPUT_CLOUDLET_ORG: ${{ inputs.cloudletOrg }}
INPUT_CLOUDLET: ${{ inputs.cloudlet }}
INPUT_NAME: ${{ inputs.a_name }}
INPUT_APPVERSION: ${{ inputs.b_appVersion }}
INPUT_ORG: ${{ inputs.c_org }}
INPUT_REGION: ${{ inputs.d_region }}
INPUT_CLOUDLET_ORG: ${{ inputs.e_cloudletOrg }}
INPUT_CLOUDLET: ${{ inputs.f_cloudlet }}
jobs:
build: