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 }}."