From 51637f1360b292502924fe6308abb17859b7dc8e Mon Sep 17 00:00:00 2001 From: xiehaijun Date: Sat, 26 Jul 2025 14:50:16 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20.gitea/workflows/demo.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 触发提交信息打印 --- .gitea/workflows/demo.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index bc88c64..b9d1af5 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -2,12 +2,27 @@ name: Gitea Actions Demo run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 on: push: - branches: [ "main" ] + 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 }}" - 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 }}."