Skip to content

fix(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.5.3 to 3.5.6 #57

fix(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.5.3 to 3.5.6

fix(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.5.3 to 3.5.6 #57

Workflow file for this run

name: Commitlint
on: [push, pull_request]
jobs:
commitlint:
runs-on: ubuntu-latest
name: Commitlint
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install commitlint
run: |
npm install -g @commitlint/config-conventional @commitlint/cli
- name: Validate current commit (last commit) with commitlint
if: github.event_name == 'push'
run: git log -1 --pretty=format:"%s" | npx commitlint --verbose
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
evaluate-checks:
runs-on: ubuntu-latest
if: always()
name: Evaluate checks
needs: [ commitlint ]
steps:
- name: Check if all jobs have parsed
uses: re-actors/alls-green@v1.2.2
with:
jobs: ${{ toJSON(needs) }}