From a3d9866cb8cd0fd221484a3d269b46e64b6eea33 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Sun, 15 Sep 2024 17:35:09 +0200 Subject: [PATCH] [Build] Activate workflow for automated version increments --- .github/workflows/pr-checks.yml | 17 +++++++++++++++++ .github/workflows/version-increments.yml | 12 ++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .github/workflows/pr-checks.yml create mode 100644 .github/workflows/version-increments.yml diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml new file mode 100644 index 00000000000..686f08589d3 --- /dev/null +++ b/.github/workflows/pr-checks.yml @@ -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 PDE Bot + botMail: eclipse-pde-bot@eclipse.org diff --git a/.github/workflows/version-increments.yml b/.github/workflows/version-increments.yml new file mode 100644 index 00000000000..287cbd47d37 --- /dev/null +++ b/.github/workflows/version-increments.yml @@ -0,0 +1,12 @@ +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 + secrets: + githubBotPAT: ${{ secrets.PDE_BOT_PAT }}