feat: add a Changelog and documentation on generating it #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | ||
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 GitHub Actions / .github/workflows/local-checks.yamlInvalid workflow file
|
||
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]' |