name: Gitea Actions Demo run-name: ${{ github.actor }} is testing out Gitea Actions ๐Ÿš€ on: [push] jobs : Explore-Gitea-Actions: runs-on: ubuntu-latest steps: - run: echo "๐ŸŽŠThe Job was triggered by ${{ github.event_name }}!" - run: echo "๐ŸงThis job is now running on a ${{ runner.os }} server." - run: echo "๐Ÿ”Ž The name of the branch is ${{ github.ref }} and the repo is ${{ github.repository }}." - name: Check out the repository code uses: actions/checkout@v3 - run: echo "The ${{ github.repository has be cloned }}" - run: echo "๐Ÿ’ปThe workflow is now ready to test the code." - name: List the files in the repo run: | ls ${{ github.workspace }} - run: echo "๐Ÿ This job's status is ${{ job.status }}"