diff --git a/.forgejo/workflows/delete.yaml b/.forgejo/workflows/delete.yaml index a4e3421..c7997c5 100644 --- a/.forgejo/workflows/delete.yaml +++ b/.forgejo/workflows/delete.yaml @@ -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: