Skip to content

Commit

Permalink
[Build] Activate workflow for automated version increments
Browse files Browse the repository at this point in the history
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
HannesWell authored and laeubi committed Jan 26, 2025
1 parent 248bc15 commit 248174e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# 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 Equinox Bot
botMail: equinox-bot@eclipse.org
extra-maven-args: '-f bundles'
14 changes: 14 additions & 0 deletions .github/workflows/version-increments.yml
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-equinox-bot
secrets:
githubBotPAT: ${{ secrets.EQUINOX_BOT_PAT }}

0 comments on commit 248174e

Please sign in to comment.