From 1ec372142c217b35bf59c4651e6c8a2b3c427719 Mon Sep 17 00:00:00 2001 From: beforegolive Date: Thu, 16 Jul 2026 08:57:35 +0800 Subject: [PATCH] =?UTF-8?q?fix(notify-all):=20=E6=94=B9=20sibling=20action?= =?UTF-8?q?=20=E7=94=A8=E5=AE=8C=E6=95=B4=20URL=EF=BC=88act=5Frunner=200.2?= =?UTF-8?q?.11=20=E4=B8=8D=E6=94=AF=E6=8C=81=20./relative=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notify-all/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/notify-all/action.yml b/notify-all/action.yml index acb12a1..398af7e 100644 --- a/notify-all/action.yml +++ b/notify-all/action.yml @@ -75,10 +75,10 @@ inputs: runs: using: 'composite' steps: - # 链式调用 sibling action(v1.1.0 tag 下的 notify-bark / notify-email) - # 同仓库相对引用,避免每个 step 都走完整 URL + 重新拉一次仓库 + # 链式调用 sibling action。act_runner 0.2.11 不支持 ./relative path, + # 必须用完整 URL。tag 跟 notify-all 自己同一个 tag,确保三个 action 自包含。 - name: Push to Bark - uses: ./notify-bark + uses: http://gitea:3000/gitea_admin/ci-actions/notify-bark@v1.1.1 with: device_key: ${{ inputs.bark_device_key }} server: ${{ inputs.bark_server }} @@ -88,7 +88,7 @@ runs: level: ${{ inputs.bark_level }} - name: Send email - uses: ./notify-email + uses: http://gitea:3000/gitea_admin/ci-actions/notify-email@v1.1.1 with: smtp_host: ${{ inputs.smtp_host }} smtp_port: ${{ inputs.smtp_port }}