ci: add ci/cd with gitversion, releases and e2e test #127
Workflow file for this run
This file contains hidden or 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: Conventional Commits | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
workflow_dispatch: # yamllint disable-line rule:empty-values | |
jobs: | |
lint-pull-request: | |
name: Lint Pull Request | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: PR Linting | |
run: | | |
.conventional-commits/scripts/lint-pull-request.sh '${{ github.event.pull_request.title }}' '${{ github.workspace }}/.conventional-commits/commitlint.pr.config.js' |