25 lines
473 B
YAML
25 lines
473 B
YAML
container:
|
|
network: "gitea-actions" # 自定义网络
|
|
network_mode: "bridge"
|
|
|
|
runner:
|
|
file: .gitea/workflows/ # 工作流文件路径
|
|
log_level: info
|
|
log_color: true
|
|
envs:
|
|
GITEA_ACTIONS: true
|
|
NODE_OPTIONS: "--max_old_space_size=4096"
|
|
labels:
|
|
- ubuntu-latest:docker://node:24-alpine
|
|
|
|
cache:
|
|
enabled: true
|
|
dir: /tmp/act_runner_cache
|
|
host: # 留空使用默认配置
|
|
|
|
http:
|
|
address: :8080 # 监控地址
|
|
|
|
log:
|
|
format: text
|
|
level: info |