tod 0.11.2

An unofficial Todoist command-line client
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This workflow runs on all PRs and ensures they are formatted using Conventional Commits (https://www.conventionalcommits.org/), rejecting any that do not conform to the commit message standards.

name: Commit Lint

on: [pull_request]  

permissions:
  contents: read
  pull-requests: read

jobs:
  commitlint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: wagoid/commitlint-github-action@v6
        with:
          configFile: .commitlint.config.mjs