Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/callUpdateTarget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

jobs:
update:
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/updateTarget.yml@master
uses: ./.github/workflows/shared/updateTarget.yml
with:
author: Eclipse Releng Bot <[email protected]>
path: 'eclipse.platform.releng.prereqs.sdk'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ on:

jobs:
check-freeze-period:
uses: ./.github/workflows/verifyFreezePeriod.yml
uses: ./.github/workflows/shared/verifyFreezePeriod.yml
check-merge-commits:
uses: ./.github/workflows/checkMergeCommits.yml
uses: ./.github/workflows/shared/checkMergeCommits.yml
check-versions:
# Run this check only for PRs from forks and not for changes from bots created on branches in this repository
if: github.event.pull_request.head.repo.full_name != github.repository
uses: ./.github/workflows/checkVersions.yml
uses: ./.github/workflows/shared/checkVersions.yml
with:
botName: Eclipse Platform Bot
botMail: [email protected]
Expand Down
Copy link
Contributor

@danthe1st danthe1st Aug 23, 2025

Choose a reason for hiding this comment

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

If you are already moving the file, would it be a good idea to fix a typo in the same PR? Specifically, the message should probably be "Please always use rebase to update your branch" instead of "Please always use reabase to update your branch". Alternatively, this could be done in another PR before rebasing.

core.setFailed('Please always use reabase to update your branch')

Copy link
Contributor

Choose a reason for hiding this comment

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

@danthe1st please suggest a PR to fix the typo this is can be fixed beforehands already.

Copy link
Contributor

@danthe1st danthe1st Aug 23, 2025

Choose a reason for hiding this comment

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

Created #3239

File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/version-increments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
publish-version-check-results:
uses: ./.github/workflows/publishVersionCheckResults.yml
uses: ./.github/workflows/shared/publishVersionCheckResults.yml
with:
botGithubId: eclipse-platform-bot
secrets:
Expand Down
Loading