16 lines
416 B
YAML
16 lines
416 B
YAML
name: Test My Custom Self-Hosted Action
|
|
|
|
on:
|
|
workflow_dispatch: # Erlaubt manuelles Starten
|
|
|
|
jobs:
|
|
run_my_action:
|
|
name: Run My Simple Log Action
|
|
runs-on: docker # Dein funktionierendes Runner-Label
|
|
|
|
steps:
|
|
- name: Execute my simple self-hosted log action
|
|
uses: badmomber/test-action@main
|
|
|
|
- name: Workflow finished
|
|
run: echo "Test workflow using custom action completed."
|