d176ab6713
Bumps [amannn/action-semantic-pull-request](https://github.com/amannn/action-semantic-pull-request) from 5.3.0 to 5.4.0. - [Release notes](https://github.com/amannn/action-semantic-pull-request/releases) - [Changelog](https://github.com/amannn/action-semantic-pull-request/blob/main/CHANGELOG.md) - [Commits](https://github.com/amannn/action-semantic-pull-request/compare/v5.3.0...v5.4.0) --- updated-dependencies: - dependency-name: amannn/action-semantic-pull-request dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
name: 'PR is Conventional and Semantic'
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- synchronize
|
|
branches:
|
|
- develop
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
conventional_pr_title:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: amannn/action-semantic-pull-request@v5.4.0
|
|
with:
|
|
scopes: |
|
|
llc
|
|
persistence
|
|
core
|
|
ui
|
|
doc
|
|
repo
|
|
localization
|
|
requireScope: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
semantic_changelog_update:
|
|
needs: conventional_pr_title # Trigger after the [conventional_pr_title] completes
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: GetStream/verify-semantic-changelog-update@main
|
|
with:
|
|
scopes: |
|
|
{
|
|
"llc": "packages/stream_chat",
|
|
"ui": "packages/stream_chat_flutter",
|
|
"core": "packages/stream_chat_flutter_core",
|
|
"localization": "packages/stream_chat_localizations",
|
|
"persistence": "packages/stream_chat_persistence"
|
|
}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|