commit b81e10a9768ea9f2f7708e3dba9af3337983cd8d Author: redteamoperator Date: Sun May 31 04:53:19 2026 +0000 Add workflow 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" + } + ] + } + } +}