mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
7c381a59c9
* feat(ci): build installer via github action * enforce conventional commits in PR titles * feat: add icon to installer --------- Co-authored-by: phernandez <phernandez@basicmachines.co>
41 lines
887 B
YAML
41 lines
887 B
YAML
name: "Pull Request Title"
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- synchronize
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: amannn/action-semantic-pull-request@v5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
# Configure allowed types based on what we want in our changelog
|
|
types: |
|
|
feat
|
|
fix
|
|
chore
|
|
docs
|
|
style
|
|
refactor
|
|
perf
|
|
test
|
|
build
|
|
ci
|
|
# Require at least one from scope list (optional)
|
|
scopes: |
|
|
core
|
|
cli
|
|
api
|
|
mcp
|
|
sync
|
|
ui
|
|
deps
|
|
installer
|
|
# Allow breaking changes (needs "!" after type/scope)
|
|
requireScopeForBreakingChange: true |