chore: rebrand webclaw to noxa

This commit is contained in:
Jacob Magar 2026-04-11 00:10:38 -04:00
parent a4c351d5ae
commit 8674b60b4e
86 changed files with 781 additions and 2121 deletions

View file

@ -11,7 +11,7 @@ env:
jobs:
sync-tls:
name: Update webclaw-tls dependencies
name: Update noxa-tls dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@ -20,9 +20,9 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- name: Update webclaw-tls crates
- name: Update noxa-tls crates
run: |
cargo update -p webclaw-http -p rustls -p 'h2@0.4' -p 'hyper@1' -p 'hyper-util@0.1' -p 'reqwest@0.13' 2>&1
cargo update -p noxa-http -p rustls -p 'h2@0.4' -p 'hyper@1' -p 'hyper-util@0.1' -p 'reqwest@0.13' 2>&1
- name: Check for changes
id: diff
@ -39,13 +39,13 @@ jobs:
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add Cargo.lock
git commit -m "chore: update webclaw-tls dependencies"
git commit -m "chore: update noxa-tls dependencies"
git push
- name: Trigger server update
if: steps.diff.outputs.changed == 'true'
run: |
gh api repos/0xMassi/webclaw-server/dispatches \
gh api repos/0xMassi/noxa-server/dispatches \
-f event_type=core-updated \
-f client_payload[sha]=${{ github.sha }}
env: