Skip to content

chore(main): release 1.9.0 #71

chore(main): release 1.9.0

chore(main): release 1.9.0 #71

Workflow file for this run

name: Commit Name Check
on:
pull_request:
branches: ["main"]
types: [opened, synchronize]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: dart-lang/setup-dart@v1
with:
sdk: "3.11.0"
- name: Get Dependencies
run: dart pub get
- name: Validate PR Commits
run: VERBOSE=true dart run commitlint_cli --from=${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to=${{ github.event.pull_request.head.sha }} --config commitlint.yaml