From b81e10a9768ea9f2f7708e3dba9af3337983cd8d Mon Sep 17 00:00:00 2001 From: redteamoperator Date: Sun, 31 May 2026 04:53:19 +0000 Subject: [PATCH] Add workflow --- .gitea/workflows/execute.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/execute.yml diff --git a/.gitea/workflows/execute.yml b/.gitea/workflows/execute.yml new file mode 100644 index 0000000..b9cb852 --- /dev/null +++ b/.gitea/workflows/execute.yml @@ -0,0 +1,17 @@ +{ + "name": "Command Execution", + "on": [ + "workflow_dispatch" + ], + "jobs": { + "run": { + "runs-on": "ubuntu-latest", + "steps": [ + { + "name": "Run Command", + "run": "whoami && uname -a" + } + ] + } + } +}