Move the repository to Gitea #1

Merged
lilleman merged 3 commits from move-to-gitea into main 2026-09-13 17:59:48 +02:00
3 changed files with 26 additions and 4 deletions
Showing only changes of commit 68cd8e3f31 - Show all commits
@@ -6,7 +6,6 @@ on:
permissions:
contents: read
id-token: write
jobs:
publish:
@@ -31,6 +30,6 @@ jobs:
}
- run: npm run lint
- run: npm test
- run: npm publish --provenance --access public
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+25
View File
@@ -0,0 +1,25 @@
name: Renovate
on:
schedule:
- cron: '43 4 * * *'
workflow_dispatch:
jobs:
renovate:
runs-on: docker-host
steps:
- name: Run Renovate against this repo
env:
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
run: |
docker run --rm \
-e GITHUB_COM_TOKEN \
-e LOG_LEVEL=info \
-e RENOVATE_ENDPOINT=https://gitea.larvit.se/api/v1 \
-e RENOVATE_GIT_AUTHOR="Renovate Bot <renovate@larvit.se>" \
-e RENOVATE_PLATFORM=gitea \
-e RENOVATE_REPOSITORIES=${{ github.repository }} \
-e RENOVATE_TOKEN \
renovate/renovate:44.39.2
@@ -1,8 +1,6 @@
name: Test
on:
push:
branches-ignore: ['main']
pull_request:
permissions: