Compare commits
6 Commits
879cb031a9
...
renovate/a
| Author | SHA1 | Date | |
|---|---|---|---|
| 9cf4b70b99 | |||
| a4454b56ce | |||
| 7cbe0b860a | |||
| de447fc717 | |||
| 8410909f04 | |||
| af55f7a4bc |
@@ -5,7 +5,7 @@ on:
|
||||
branches:
|
||||
- main
|
||||
schedule: # runs this workflow at the scheduled time (uses UTC, adjust for your timezone)
|
||||
- cron: "0 12 * * *"
|
||||
- cron: "0 4 * * 3,6" # “At 04:00 on Wednesday and Saturday.”
|
||||
push: # runs this workflow when pushes to the main branch are made
|
||||
branches:
|
||||
- main
|
||||
@@ -15,10 +15,10 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
container: ghcr.io/renovatebot/renovate:41.43.4
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- run: renovate
|
||||
env:
|
||||
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js
|
||||
LOG_LEVEL: "debug"
|
||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secret.RENOVATE_GITHUB_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
|
||||
12
config.js
12
config.js
@@ -10,4 +10,16 @@ module.exports = {
|
||||
},
|
||||
optimizeForDisabled: true,
|
||||
persistRepoData: true,
|
||||
hostRules: [
|
||||
{
|
||||
hostType: 'github',
|
||||
matchHost: 'github.com',
|
||||
token: process.env.GITHUB_TOKEN,
|
||||
},
|
||||
{
|
||||
hostType: 'gitea',
|
||||
matchHost: 'gitea.ditmarvisser.net',
|
||||
token: process.env.RENOVATE_TOKEN,
|
||||
},
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user