forked from eclipse-jdt/eclipse.jdt.core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Build] Activate workflow for automated version increments
Set up for this repository the workflow for automated version increments in pull-requests added via eclipse-platform/eclipse.platform.releng.aggregator#2352
- Loading branch information
1 parent
4833c76
commit acd02f9
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Fast running checks for pull-requests | ||
|
||
name: Pull-Request Checks | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
check-versions: | ||
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/checkVersions.yml@master | ||
with: | ||
botName: Eclipse JDT Bot | ||
botMail: jdt-bot@eclipse.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Publish Version Check Results | ||
|
||
on: | ||
workflow_run: | ||
workflows: [ 'Pull-Request Checks' ] | ||
types: [ completed ] | ||
|
||
jobs: | ||
publish-version-check-results: | ||
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/publishVersionCheckResults.yml@master | ||
with: | ||
botGithubId: eclipse-jdt-bot | ||
secrets: | ||
githubBotPAT: ${{ secrets.JDT_BOT_PAT }} |