A framework for building convergent cross-platform Nextcloud clients using Flutter.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
name: Conventional commits
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
conventional-commits:
|
|
|
|
name: Conventional commits
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Install dart
|
|
|
|
uses: dart-lang/setup-dart@8a4b97ea2017cc079571daec46542f76189836b1 # v1
|
|
|
|
- name: Install commitlint_cli
|
|
|
|
run: dart pub get
|
|
|
|
|
|
|
|
- name: Lint conventional commits
|
|
|
|
run: dart run commitlint_cli --from=${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to=${{ github.event.pull_request.head.sha }}
|