mirror of
https://github.com/corda/corda.git
synced 2024-12-21 05:53:23 +00:00
3a6deeefa7
# Conflicts: # .github/workflows/check-pr-title.yml # .snyk # node-api/src/main/kotlin/net/corda/nodeapi/internal/protonwrapper/netty/AMQPClient.kt # node/src/integration-test/kotlin/net/corda/node/amqp/AMQPClientSslErrorsTest.kt # node/src/main/kotlin/net/corda/node/internal/AbstractNode.kt
15 lines
410 B
YAML
15 lines
410 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.6.1
|
|
with:
|
|
title-regex: '^((CORDA|AG|EG|ENT|INFRA|ES)-\d+|NOTICK)(.*)'
|
|
on-failed-regex-comment: "PR title failed to match regex -> `%regex%`"
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|