first commit
All checks were successful
/ CD > 計算版本號 (push) Successful in 1s
/ CD > 發布專案 (push) Successful in 3s

This commit is contained in:
2026-03-25 21:35:31 +08:00
commit 70af90cce6
4 changed files with 80 additions and 0 deletions

16
action.yaml Normal file
View File

@@ -0,0 +1,16 @@
name: 'HEALTH CHECK'
description: '檢查服務健康狀態'
author: 'Jeffery'
inputs:
CHECK_URL:
description: '檢查URL'
required: true
HEALTH_CODE:
description: '健康碼'
default: '200'
runs:
using: 'docker'
image: 'Dockerfile'
env:
CHECK_URL: ${{ inputs.CHECK_URL }}
HEALTH_CODE: ${{ inputs.HEALTH_CODE }}