Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push:
branches: [main, development]
pull_request:
branches: [main]
branches: [main, development]

jobs:
yaml-lint:
Expand Down
2 changes: 1 addition & 1 deletion inventory-sample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ all:
# If set, these keys will be added to ~/.ssh/authorized_keys
# openclaw_ssh_keys:
# - "ssh-ed25519 AAAAC3Nz..."

# Tailscale Auth Key (Optional) - Leave empty to skip auto-connect
# tailscale_authkey: "tskey-auth-..."
3 changes: 2 additions & 1 deletion playbook.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
---
- ansible.builtin.import_playbook: playbooks/install.yml
- name: OpenClaw Installation
ansible.builtin.import_playbook: playbooks/install.yml
1 change: 1 addition & 0 deletions roles/openclaw/tasks/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
- name: Install pnpm globally
ansible.builtin.command: npm install -g pnpm
when: pnpm_check.rc != 0
changed_when: pnpm_check.rc != 0

- name: Verify Node.js installation
ansible.builtin.command: node --version
Expand Down
Loading