Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented

improve(ci): Semantic PR checks (#237)

This will help with better release notes.

authored by oeiuwq.com and committed by

GitHub bbc13821 6c205612

+49
+49
.github/workflows/semantic-pr.yml
··· 1 + name: Semantic PR 2 + on: 3 + pull_request: 4 + types: 5 + - opened 6 + - reopened 7 + - edited 8 + 9 + concurrency: 10 + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.number }} 11 + cancel-in-progress: true 12 + 13 + jobs: 14 + main: 15 + name: Check pull request title 16 + runs-on: ubuntu-latest 17 + steps: 18 + - uses: amannn/action-semantic-pull-request@v5.5.2 19 + env: 20 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 21 + with: 22 + # Type abbreviation comments: 23 + # feat -> feature 24 + types: | 25 + fix 26 + doc 27 + feat 28 + test 29 + perf 30 + style 31 + revert 32 + cleanup 33 + improve 34 + refactor 35 + breaking 36 + scopes: | 37 + ci 38 + bug 39 + lib 40 + ctx 41 + docs 42 + core 43 + class 44 + homes 45 + tests 46 + template 47 + battery 48 + repo 49 +