Files
gitea-actions-test/.gitea/workflows/obs-service.yaml
2023-10-08 17:45:16 +08:00

16 lines
481 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: opensuse container checkout test
steps:
- name: Hello world action step
uses: https://src.opensuse.org/alexlau/gitea-actions-test@v4
with:
who-to-greet: 'AvengerMoJo'
id: hello
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.time }}"