feat: set up persistent runner service and proper PR workflow

This commit is contained in:
adilallo
2025-08-29 08:18:42 -06:00
parent dec2757f88
commit 9d7e0095f2
2 changed files with 26 additions and 1 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ run-name: ${{ gitea.actor }} triggered CI pipeline
on:
push:
branches: [main, develop, adilallo/enhancement/TestingFramework]
branches: [main, develop]
pull_request:
branches: [main, develop]
+25
View File
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.gitea.act-runner</string>
<key>ProgramArguments</key>
<array>
<string>/Users/Vinod/Documents/GitHub/community-rule/act_runner</string>
<string>daemon</string>
<string>--config</string>
<string>/Users/Vinod/Documents/GitHub/community-rule/config.yaml</string>
</array>
<key>WorkingDirectory</key>
<string>/Users/Vinod/Documents/GitHub/community-rule</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>StandardOutPath</key>
<string>/Users/Vinod/Documents/GitHub/community-rule/runner.log</string>
<key>StandardErrorPath</key>
<string>/Users/Vinod/Documents/GitHub/community-rule/runner-error.log</string>
</dict>
</plist>