Skip to content

ci: fixes in commit linting and new issue templates #56

ci: fixes in commit linting and new issue templates

ci: fixes in commit linting and new issue templates #56

Workflow file for this run

---
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- 2.x
name: 🔍 Integration
jobs:
commit-linting:
timeout-minutes: 4
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- name: 📦 Check out the codebase
uses: actions/[email protected]
- name: 🧐 Lint commits using "commitlint"
uses: wagoid/[email protected]
with:
configFile: ${{ github.workspace }}/.github/.commitlint.config.mjs
failOnWarnings: false
failOnErrors: false
helpURL: 'https://github.com/conventional-changelog/commitlint/#what-is-commitlint'
...