Added action config
All checks were successful
Updater CI/CD / publish (push) Successful in 1m26s

This commit is contained in:
2026-02-24 19:17:56 +01:00
parent a341b9cfda
commit f824789bbb
2 changed files with 34 additions and 2 deletions

16
action.yml Normal file
View File

@@ -0,0 +1,16 @@
name: "Call Service Updater"
description: "Triggers the internal updater service via HTTP"
author: "Leon Hoppe"
inputs:
service:
description: "Name of the service to update"
required: true
runs:
using: "composite"
steps:
- name: Call updater
shell: sh
run: |
curl -N "http://updater:5000/update/${{ inputs.service }}"