mirror of
https://github.com/corda/corda.git
synced 2024-12-30 09:48:59 +00:00
b421f0daa0
* EG-4168 Updating contributors.md list for OS 4.5 release branch (#6784) * INFRA-965: forward merge from 4.4 (2020-11-14) (#6805) * EG-4168 Updating contributors.md list for OS 4.4 release branch (#6785) * INFRA-965: forward merge from 4.3 (2020-11-13) (#6803) * INFRA-965: Jenkins/NexusIQ integration should target patches (#6802) as well as major/minor releases * Updated nightly builds to match changes for release branch builds * Updated JDK11 builds to match changes for release branch builds Co-authored-by: ivanterziev <61829352+ivanterziev-r3@users.noreply.github.com> * Backporting updates for check-pr-title workflow Co-authored-by: ivanterziev <61829352+ivanterziev-r3@users.noreply.github.com>
15 lines
407 B
YAML
15 lines
407 B
YAML
name: 'PR title check'
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, reopened]
|
|
|
|
jobs:
|
|
check-pr-title:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: morrisoncole/pr-lint-action@v1.4.1
|
|
with:
|
|
title-regex: '^((CORDA|AG|EG|ENT|INFRA)-\d+|NOTICK)(.*)'
|
|
on-failed-regex-comment: "PR title failed to match regex -> `%regex%`"
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|