Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Gepardec/renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Ruhsam committed Jun 28, 2024
2 parents 62b85ee + 1e1eec0 commit 49de172
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 16 deletions.
15 changes: 0 additions & 15 deletions angular-update

This file was deleted.

10 changes: 10 additions & 0 deletions quarkus-update
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,13 @@ if [[ "$branchName" =~ renovate/.*quarkus.platform.version ]]; then

/tmp/renovate/repos/$platform/$repository/mvnw -f /tmp/renovate/repos/$platform/$repository/pom.xml io.quarkus.platform:quarkus-maven-plugin:$newVersion:update
fi

if [[ "$branchName" =~ renovate/angular* ]]; then
echo "Branch: $branchName; Old version: $oldVersion; New MajorMinorVersion: $newMajorMinor"
currentVersion=$oldVersion
npm install
while [ $currentVersion -lt $newVersion ] ; do
currentVersion=`expr $currentVersion + 1`
ng update @angular/core@$currentVersion @angular/cli@$currentVersion --allow-dirty
done
fi
2 changes: 1 addition & 1 deletion renovate-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {
gitAuthor: 'Renovate Bot <bot@renovateapp.com>',
platform: 'github',
repositories: [
"Gepardec/renovate-playground"
"Gepardec/renovate-angular-playground"
],
prHourlyLimit: 0,
postUpgradeTasks: {
Expand Down

0 comments on commit 49de172

Please sign in to comment.