chore: add Renovate configuration and workflows
- Introduced .renovaterc for Renovate settings. - Added renovate.config.cjs for Gitea integration. - Created .gitea/workflows/renovate.yml for daily Renovate runs. - Added .gitea/workflows/test.yml for CI testing. - Removed outdated GitHub workflows and configuration files.
This commit is contained in:
27
.gitea/workflows/renovate.yml
Normal file
27
.gitea/workflows/renovate.yml
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
name: RenovateBot
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "@daily"
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
renovate:
|
||||||
|
container: ghcr.io/renovatebot/renovate:43
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- name: Run renovate
|
||||||
|
run: |
|
||||||
|
renovate
|
||||||
|
env:
|
||||||
|
LOG_LEVEL: ${{ vars.RENOVATE_LOG_LEVEL }}
|
||||||
|
RENOVATE_LOG_LEVEL: ${{ vars.RENOVATE_LOG_LEVEL }}
|
||||||
|
RENOVATE_CONFIG_FILE: renovate.config.cjs
|
||||||
|
RENOVATE_REPOSITORIES: ${{ gitea.repository }}
|
||||||
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
16
.gitea/workflows/test.yml
Normal file
16
.gitea/workflows/test.yml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
name: Test
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
name: npm test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 22
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm run check
|
||||||
|
- run: npm run typecheck
|
||||||
16
.github/renovate.json
vendored
16
.github/renovate.json
vendored
@@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
||||||
"extends": ["config:recommended", ":disableDependencyDashboard"],
|
|
||||||
"assignees": ["valentineus"],
|
|
||||||
"labels": ["dependencies", "automated"],
|
|
||||||
"packageRules": [
|
|
||||||
{
|
|
||||||
"description": "Group patch & minor updates together",
|
|
||||||
"groupName": "all digest updates",
|
|
||||||
"groupSlug": "all-digest",
|
|
||||||
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
|
|
||||||
"matchPackageNames": ["*"],
|
|
||||||
"automerge": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
28
.github/workflows/ci.yml
vendored
28
.github/workflows/ci.yml
vendored
@@ -1,28 +0,0 @@
|
|||||||
name: CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [master]
|
|
||||||
pull_request:
|
|
||||||
branches: [master]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
name: Test
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v5
|
|
||||||
- name: Set up Node.js
|
|
||||||
uses: actions/setup-node@v5
|
|
||||||
with:
|
|
||||||
node-version: 22
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm ci
|
|
||||||
- name: Run checks
|
|
||||||
run: npm run check
|
|
||||||
- name: Run type checks
|
|
||||||
run: npm run typecheck
|
|
||||||
25
.github/workflows/mirror.yml
vendored
25
.github/workflows/mirror.yml
vendored
@@ -1,25 +0,0 @@
|
|||||||
name: Mirror
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [master]
|
|
||||||
pull_request:
|
|
||||||
branches: [master]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
mirror:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v5
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Mirror to remote repository
|
|
||||||
uses: yesolutions/mirror-action@master
|
|
||||||
with:
|
|
||||||
REMOTE: "https://git.popov.link/popov.link.git"
|
|
||||||
GIT_USERNAME: ${{ secrets.GIT_USERNAME }}
|
|
||||||
GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}
|
|
||||||
30
.renovaterc
Normal file
30
.renovaterc
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"config:recommended",
|
||||||
|
":disableDependencyDashboard"
|
||||||
|
],
|
||||||
|
"assignees": [
|
||||||
|
"valentineus"
|
||||||
|
],
|
||||||
|
"labels": [
|
||||||
|
"dependencies",
|
||||||
|
"automated"
|
||||||
|
],
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"groupName": "all digest updates",
|
||||||
|
"groupSlug": "all-digest",
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"minor",
|
||||||
|
"patch",
|
||||||
|
"pin",
|
||||||
|
"digest"
|
||||||
|
],
|
||||||
|
"matchPackageNames": [
|
||||||
|
"*"
|
||||||
|
],
|
||||||
|
"automerge": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
6
renovate.config.cjs
Normal file
6
renovate.config.cjs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
module.exports = {
|
||||||
|
endpoint: "https://code.popov.link",
|
||||||
|
gitAuthor: "renovate[bot] <renovatebot@noreply.localhost>",
|
||||||
|
optimizeForDisabled: true,
|
||||||
|
platform: "gitea",
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user