Skip to content

feat: add a Changelog and documentation on generating it #40

feat: add a Changelog and documentation on generating it

feat: add a Changelog and documentation on generating it #40

Workflow file for this run

---
name: 'checks'
'on':
pull_request:
branches:
- 'main'
jobs:
conventional:
runs-on: 'ubuntu-latest'
steps:
- name: Validate PR title
uses: 'lab42/[email protected]'
with:
description_regexp: '(.*)'
markdown-lint:
uses: ./.github/workflows/markdown-lint.yaml

Check failure on line 18 in .github/workflows/local-checks.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/local-checks.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/local-checks.yaml" -> "./.github/workflows/markdown-lint.yaml" : failed to fetch workflow: workflow was not found.
pre-commit:
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout repo'
uses: 'actions/checkout@v4'
# - name: 'Set up Python'
# uses: 'actions/setup-python@v4'
# with:
# python-version: '3.11'
- name: 'Run pre-commit'
uses: 'pre-commit/[email protected]'