Make releaseNumberSDK configurable parameter in checkVersions.yml #862
Workflow file for this run
This file contains hidden or 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
| # 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-freeze-period: | |
| uses: ./.github/workflows/verifyFreezePeriod.yml | |
| check-merge-commits: | |
| uses: ./.github/workflows/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 | |
| with: | |
| botName: Eclipse Platform Bot | |
| botMail: [email protected] | |
| # Only check 'eclipse.platform.releng' projects | |
| working-directory: 'eclipse.platform.releng' | |
| extra-maven-args: '-Pbuild-individual-bundles' |