This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [amannn/action-semantic-pull-request](https://redirect.github.com/amannn/action-semantic-pull-request) | action | minor | `v6.0.1` -> `v6.1.0` | --- ### Release Notes <details> <summary>amannn/action-semantic-pull-request (amannn/action-semantic-pull-request)</summary> ### [`v6.1.0`](https://redirect.github.com/amannn/action-semantic-pull-request/releases/tag/v6.1.0) [Compare Source](https://redirect.github.com/amannn/action-semantic-pull-request/compare/v6.0.1...v6.1.0) ##### Features - Support providing regexps for types ([#​292](https://redirect.github.com/amannn/action-semantic-pull-request/issues/292)) ([a30288b](a30288bf13)) ##### Bug Fixes - Remove trailing whitespace from "unknown release type" error message ([#​291](https://redirect.github.com/amannn/action-semantic-pull-request/issues/291)) ([afa4edb](afa4edb1c4)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/libretime/libretime). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44MS4yIiwidXBkYXRlZEluVmVyIjoiNDEuODEuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiY2kiLCJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
41 lines
987 B
YAML
41 lines
987 B
YAML
name: PR
|
|
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- synchronize
|
|
|
|
jobs:
|
|
main:
|
|
name: Validate PR title
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: amannn/action-semantic-pull-request@v6.1.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
scopes: |
|
|
analyzer
|
|
api
|
|
api-client
|
|
installer
|
|
legacy
|
|
playout
|
|
shared
|
|
ui
|
|
worker
|
|
deps
|
|
main
|
|
stable
|
|
subjectPattern: ^(?![A-Z]).+$
|
|
subjectPatternError: |
|
|
The subject "{subject}" found in the pull request title "{title}"
|
|
didn't match the configured pattern. Please ensure that the subject
|
|
doesn't start with an uppercase character.
|
|
|
|
See https://www.conventionalcommits.org/en/v1.0.0/ for more details.
|
|
wip: true
|
|
validateSingleCommit: true
|