更新 .gitea/workflows/demo.yaml
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 37s
Details
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 37s
Details
触发提交信息打印
This commit is contained in:
parent
1fca0d4234
commit
51637f1360
|
|
@ -2,12 +2,27 @@ name: Gitea Actions Demo
|
||||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
on:
|
on:
|
||||||
push:
|
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:
|
jobs:
|
||||||
Explore-Gitea-Actions:
|
Explore-Gitea-Actions:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
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 "🎉 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 "🐧 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 }}."
|
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue