rollback
Some checks failed
checks / Check & Test (Frontend + Backend) (push) Failing after 3s
Gitea Actions Demo / Explore-Gitea-Actions (pull_request) Failing after 1s
checks / Check & Test (Frontend + Backend) (pull_request) Failing after 3s

This commit is contained in:
Patrick
2025-10-29 11:19:17 +01:00
parent 56978664e6
commit 211676866f

View File

@ -1,19 +1,26 @@
name: Gitea Actions Demo name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions run-name: ${{ gitea.actor }} is testing out Gitea Actions
on: [push]
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs: jobs:
Explore-Gitea-Actions: Explore-Gitea-Actions:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event." - name: Info
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: | run: |
ls ${{ gitea.workspace }} echo "Triggered by ${{ gitea.event_name }} event"
- run: echo "This job's status is ${{ job.status }}." echo "Branch: ${{ gitea.ref }}"
echo "Repository: ${{ gitea.repository }}"
- name: Checkout repository
uses: actions/checkout@v4
- name: List repo files
run: ls .
- name: Done
run: echo "Workflow finished."