From 81bcfbdc654f9da9f4c99b0d16fc1217eec0a8e4 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 5 Jun 2025 23:10:57 +0000 Subject: Migrate from Gitea Actions to GitHub Actions --- .gitea/workflows/ci.yml | 22 ---------------------- .gitea/workflows/renovate.yml | 18 ------------------ 2 files changed, 40 deletions(-) delete mode 100644 .gitea/workflows/ci.yml delete mode 100644 .gitea/workflows/renovate.yml (limited to '.gitea/workflows') diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml deleted file mode 100644 index e06db1a..0000000 --- a/.gitea/workflows/ci.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: CI - -on: - push: - branches: [master] - pull_request: - branches: [master] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 22 - - name: Install dependencies - run: npm ci - - name: Run checks - run: npm run check diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml deleted file mode 100644 index 29ffa45..0000000 --- a/.gitea/workflows/renovate.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: RenovateBot -on: - schedule: - - cron: "@daily" - -jobs: - renovate: - container: ghcr.io/renovatebot/renovate:40-full - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Run Renovate updates - run: renovate - env: - RENOVATE_CONFIG_FILE: renovate.config.cjs - RENOVATE_REPOSITORIES: ${{ gitea.repository }} - RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} -- cgit v1.2.3