-
Notifications
You must be signed in to change notification settings - Fork 94
26 lines (23 loc) · 865 Bytes
/
pr-checks.yml
File metadata and controls
26 lines (23 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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: platform-bot@eclipse.org
# Only check 'eclipse.platform.releng' projects
working-directory: 'eclipse.platform.releng'
extra-maven-args: '-Pbuild-individual-bundles'