From d01b3c729ab8d2c689b1ead35ce038d5fa5856de Mon Sep 17 00:00:00 2001 From: cooney Date: Wed, 1 Apr 2026 01:09:27 +0900 Subject: [PATCH] Add test workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit act_runner 연동 후 빌드 테스트 --- .gitea/workflows/test.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..326c24d --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,9 @@ +name: Proxmox-Runner-Test +on: [push] + +jobs: + hello-job: + runs-on: ubuntu-latest + steps: + - name: Greet + run: echo "축하합니다! Proxmox 러너가 첫 빌드에 성공했습니다!" \ No newline at end of file