Compare commits

33 Commits

Author SHA1 Message Date
8ccb53c124 Change renovate log level to info
All checks were successful
renovate / renovate (push) Successful in 3m27s
2026-02-10 21:50:00 +05:30
b4e8ffc349 Remove test file
All checks were successful
renovate / renovate (push) Successful in 2m11s
2026-02-08 21:55:22 +05:30
01b6ae207f Update correct cron timing and remove unneeded on WF trigger 2026-02-08 21:54:32 +05:30
9e0c7f6e58 Update spelling mistake
All checks were successful
renovate / renovate (push) Successful in 48s
2026-02-08 21:22:16 +05:30
f3747de186 Update for gitea
Some checks failed
renovate / renovate (push) Has been cancelled
2026-02-08 21:20:36 +05:30
049e4012f4 Update WF
Some checks failed
renovate / renovate (push) Has been cancelled
2026-02-08 19:28:33 +05:30
5524384f08 Update WF for ignoring Readme from triggering WF 2026-02-07 21:58:59 +05:30
441f366f12 Update Readme for new WF 2026-02-07 21:56:22 +05:30
6077fddb51 Merge pull request 'Update actions/checkout action to v6.0.2' (#12) from renovate/actions-checkout-6.x into main
Reviewed-on: #12
2026-02-07 21:28:05 +05:30
4b37848023 Update actions/checkout action to v6.0.2 2026-02-07 15:53:02 +00:00
70282d7c80 Update WF for Forgejo runner 2026-02-07 21:20:52 +05:30
50a5d6793e Update Secret name 2025-12-14 13:06:49 +05:30
1d0ef88b44 Add GitHub tocken 2025-12-14 13:03:29 +05:30
623ad8654b Update WF 2025-12-12 17:35:07 +05:30
b45e6e948a Update Readme 2025-12-12 17:29:38 +05:30
b36b810bde Update WF 2025-12-12 17:25:55 +05:30
057f1825ce Update WFs 2025-12-12 17:16:43 +05:30
f5e05c7105 Trigger WF 2025-12-12 17:15:36 +05:30
e690cdf415 Add crow ci wf 2025-12-12 17:11:24 +05:30
b6b2087155 Update config 2025-12-12 17:08:07 +05:30
b2b4bcb01a Merge pull request 'Update actions/checkout action to v6.0.1' (#11) from renovate/actions-checkout-6.x into main
Reviewed-on: #11
2025-12-09 12:16:04 +05:30
Renovate Bot
0a1e1dca98 Update actions/checkout action to v6.0.1 2025-12-03 02:08:08 +00:00
58eb9f68f6 Merge pull request 'Update actions/checkout action to v6' (#10) from renovate/actions-checkout-6.x into main
Reviewed-on: #10
2025-11-29 12:38:27 +05:30
Renovate Bot
2b2e8d6ed9 Update actions/checkout action to v6 2025-11-21 02:04:19 +00:00
7b892b3953 Merge pull request 'Update actions/checkout action to v5.0.1' (#9) from renovate/actions-checkout-5.x into main
Reviewed-on: #9
2025-11-18 15:59:53 +05:30
Renovate Bot
194a1f91eb Update actions/checkout action to v5.0.1 2025-11-18 02:08:27 +00:00
766982cd41 Merge pull request 'Update actions/checkout action to v5' (#8) from renovate/actions-checkout-5.x into main
Reviewed-on: #8
2025-09-21 22:46:08 +05:30
Renovate Bot
db0753edb3 Update actions/checkout action to v5 2025-09-21 17:10:18 +00:00
665c80e486 Update .gitea/workflows/renovate.yaml 2025-09-21 22:33:07 +05:30
d141af1c6b Merge pull request 'Update actions/checkout action to v5' (#6) from renovate/actions-checkout-5.x into main
Reviewed-on: #6
2025-09-21 22:24:15 +05:30
Renovate Bot
f112a80016 Update actions/checkout action to v5 2025-09-21 16:53:35 +00:00
6749003630 Update .gitea/workflows/renovate.yaml 2025-09-21 22:17:04 +05:30
643a9e83ed Merge pull request 'Update .gitea/workflows/renovate.yaml' (#7) from update-cron into main
Reviewed-on: #7
2025-09-21 22:09:14 +05:30
5 changed files with 44 additions and 10 deletions

18
.crow/dryRun.yml.old Normal file
View File

@@ -0,0 +1,18 @@
when:
event:
- push
steps:
renovateDryRun:
image: renovate/renovate
pull: true
commands:
- renovate
environment:
RENOVATE_CONFIG_FILE: config.js
RENOVATE_DRY_RUN: full
LOG_LEVEL: debug
RENOVATE_TOKEN:
from_secret: RENOVATE_TOKEN
GITHUB_COM_TOKEN:
from_secret: GITHUB_COM_TOKEN

17
.crow/renovate.yml.old Normal file
View File

@@ -0,0 +1,17 @@
when:
event:
- cron
- manual
steps:
renovate:
image: renovate/renovate
pull: true
commands:
- renovate
environment:
RENOVATE_CONFIG_FILE: config.js
RENOVATE_TOKEN:
from_secret: RENOVATE_TOKEN
GITHUB_COM_TOKEN:
from_secret: GITHUB_COM_TOKEN

View File

@@ -5,20 +5,17 @@ on:
branches: branches:
- main - main
schedule: schedule:
- cron: "03 2 * * *" - cron: "30 2 * * *"
push:
branches:
- main
jobs: jobs:
renovate: renovate:
runs-on: bookworm-slim runs-on: trixie-slim
container: ghcr.io/renovatebot/renovate:latest container: ghcr.io/renovatebot/renovate:latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6.0.2
- run: renovate - run: renovate
env: env:
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js
LOG_LEVEL: "debug" LOG_LEVEL: "info"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }} GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}

View File

@@ -1,3 +1,5 @@
# renovate-config # renovate-config
Renovate Bot Configurations Renovate Bot Configurations
![status-badge](https://git.ryuu.in/renovate-bot/renovate-config/actions/workflows/renovate.yml/badge.svg?branch=main)

View File

@@ -1,7 +1,7 @@
module.exports = { module.exports = {
platform: 'gitea', platform: 'gitea',
endpoint: 'https://git.ryuu.in/api/v1/', // set this to the url of your gitea instance endpoint: 'https://git.ryuu.in/api/v1/',
gitAuthor: 'Renovate Bot <renovate_bot@ryuu.in>', // set the email address to whatever email your gave this user in your gitea gitAuthor: 'Renovate Bot <renovate@sh.ryuu.in>',
username: 'renovate-bot', username: 'renovate-bot',
autodiscover: true, autodiscover: true,
onboardingConfig: { onboardingConfig: {