Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update target job to use released version of Tycho and remove draft flag #2415

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/updateTarget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
cache: maven
- name: Update Target Platform
run: >-
mvn -f eclipse.platform.releng.prereqs.sdk
org.eclipse.tycho.extras:tycho-version-bump-plugin:4.0.9-SNAPSHOT:update-target
mvn -ntp -f eclipse.platform.releng.prereqs.sdk
org.eclipse.tycho.extras:tycho-version-bump-plugin:4.0.9:update-target
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't it be better to add tycho-version-bump-plugin to the pluginManagement section in the eclipse-parent pom and use the tycho.version used for all other Tycho plugins?

This would avoid future maintenance of that version.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As this is a standalone action I would rather not blindly update it if there are no relevant changes.

-DallowMajorUpdates=false
-Ddiscovery=parent
-Dmaven.version.rules=update-rules.xml
Expand All @@ -45,7 +45,7 @@ jobs:
title: Dependency Updates
body: Please review the changes and merge if appropriate, or cherry pick individual updates.
delete-branch: true
draft: true
draft: false
token: ${{ secrets.RELENG_BOT_PAT }}
committer: Eclipse Releng Bot <[email protected]>
author: Eclipse Releng Bot <[email protected]>
Expand Down