Files
testrunner/.gitea/workflows/hello.yaml
T
MOIS3Y 6e0dee4652
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2m16s
ci: test hello job
2026-06-15 15:58:48 +09:00

19 lines
540 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} testing Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: Checkout repository code
uses: actions/checkout@v4
- name: Say Hello
run: |
echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
echo "🐧 This job is now running on a ${{ runner.os }} server!"
echo "🖥️ Working directory is ${{ gitea.workspace }}"
ls -la