Skip to content

fix(deps): update spring boot to v3.5.13 #6613

fix(deps): update spring boot to v3.5.13

fix(deps): update spring boot to v3.5.13 #6613

name: Chore
on:
pull_request:
branches: [staging]
types: [opened, reopened, edited, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-pr-title:
name: PR title validation
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: validate conventional commit message
uses: ytanikin/pr-conventional-commits@fda730cb152c05a849d6d84325e50c6182d9d1e9
with:
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'
add_label: 'false'
env:
GITHUB_TOKEN: ${{ github.token }}
- name: post comment about invalid PR title
if: failure()
uses: marocchino/sticky-pull-request-comment@v2
with:
header: conventional-commit-pr-title
message: |
Thanks for contributing to Helios 🌞
Please use PR titles according to [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your proposed title needs to be adjusted.
<details><summary><b>Details</b></summary>
```
${{ steps.lint.outputs.error_message }}
```
</details>
- name: delete comment about invalid PR title
if: success()
uses: marocchino/sticky-pull-request-comment@v2
with:
header: conventional-commit-pr-title
delete: true