From 12f626b0883d92af5902ec6e20f51fee10cbe145 Mon Sep 17 00:00:00 2001 From: alexz Date: Sat, 17 Jan 2026 15:14:03 +0000 Subject: [PATCH] chore: remove .github workflows --- .github/workflows/renovate.yml | 45 ---------------------------------- .github/workflows/test.yml | 23 ----------------- 2 files changed, 68 deletions(-) delete mode 100755 .github/workflows/renovate.yml delete mode 100755 .github/workflows/test.yml diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml deleted file mode 100755 index 23a7deb..0000000 --- a/.github/workflows/renovate.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Renovate -on: - workflow_dispatch: - inputs: - log_level: - type: choice - description: Log level - default: INFO - options: - - DEBUG - - INFO - - WARN - - ERROR - - FATAL - schedule: - - cron: 0 2 * * * - -jobs: - renovate: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install node - uses: actions/setup-node@v4 - with: - node-version: "22" - - - name: Install bun - uses: oven-sh/setup-bun@v2 - - - name: Cache Bun global packages - uses: actions/cache@v4 - with: - path: ~/.bun/install/global - key: ${{ runner.os }}-bun-global-renovate-40 - restore-keys: | - ${{ runner.os }}-bun-global- - - - name: Install Renovate - run: bun install -g renovate@40 - - - name: Run renovate - run: LOG_LEVEL=${{ github.event.inputs.log_level || 'INFO' }} renovate --token ${{ secrets.GITHUB_TOKEN }} ${{ github.repository }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100755 index d890982..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Test - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - test: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Setup Bun - uses: oven-sh/setup-bun@v2 - - - name: Install dependencies - run: bun install - - - name: Run tests - run: bun test