40 lines
1.6 KiB
YAML
40 lines
1.6 KiB
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on:
|
|
push:
|
|
branches: [ "main","releases/**" ]
|
|
# paths:
|
|
# - 'sub-project/**'
|
|
# - '!sub-project/docs/**' # !在正匹配之后匹配负模式(以 为前缀)将排除该路径。
|
|
# paths-ignore:
|
|
# - 'docs/**'
|
|
# tags:
|
|
# - v2
|
|
# - v1.*
|
|
# schedule:
|
|
# - cron: '30 5 * * 1,3'
|
|
# - cron: '30 5 * * 2,4'
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get commit message (Push)
|
|
if: github.event_name == 'push'
|
|
run: |
|
|
echo "提交的信息: ${{ github.event.head_commit.message }}"
|
|
commit_title=$(git log -1 --pretty=format:"%s")
|
|
commit_body=$(git log -1 --pretty=format:"%b")
|
|
echo "Commit Title: $commit_title"
|
|
echo "Commit Body: $commit_body"
|
|
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
|
- 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: |
|
|
ls ${{ gitea.workspace }}
|
|
- run: echo "🍏 This job's status is ${{ job.status }}." |